online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Link Collection</title> <style> body { font-family: 'Arial', sans-serif; background-color: #f0f4f8; margin: 0; padding: 20px; } .container { max-width: 800px; margin: auto; background: #ffffff; padding: 20px; border-radius: 10px; box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); } h1 { text-align: center; color: #333; margin-bottom: 20px; } ul { list-style-type: none; padding: 0; } li { margin: 10px 0; padding: 10px; background: #e9ecef; border-radius: 5px; transition: background 0.3s; } li:hover { background: #d6d8db; } a { text-decoration: none; color: #007bff; } a:hover { text-decoration: underline; } </style> </head> <body> <div class="container"> <h1>Link Collection</h1> <ul id="link-list"> <!-- Links will be inserted here by JavaScript --> </ul> </div> <script> const links = [ "https://www.facebook.com/Cam2024Fullhd", "https://www.facebook.com/Cam2024VietSub", "https://www.facebook.com/Bureau749tw", "https://www.facebook.com/TheVolunteersTheBattleofLifeandDeath", "https://www.facebook.com/TransformersOne2024Tw", "https://www.facebook.com/share/p/ZYdem7MAePGAcA6o", "https://www.facebook.com/share/p/DgMbuakKM9eePxAK", "https://www.facebook.com/share/p/SCZdiwZYTB45UiZd/", "https://www.facebook.com/share/p/uAuQhw6eGppRSWK5/", "https://www.facebook.com/TigerWolfRabbitTw", "https://bento.me/transformers-one-sub-thai", "https://bento.me/transformers-one-2024-thai", "https://bento.me/transformers-one-sub-thai-hd", "https://bento.me/vina-before-7-days-2024-subthai-hd-free", "https://bento.me/vina-before-7-days-2024-thai", "https://groups.google.com/g/the-volunteers-the-battle-of-life-and-death-2024-1080p/c/HhROUDuYSXk/m/ZWtb097mAQAJ", "https://groups.google.com/g/the-volunteers-the-battle-of-life-and-death-2024/c/QfKDLtm9fZU/m/pQzJ46RvBgAJ", "https://groups.google.com/g/the-volunteers-the-battle-of-life-and-death-tw/c/-R_wcFzjHeg/m/i9GVOx7MAQAJ", "https://groups.google.com/g/bureau-749-2024-tw/c/5cXclwG4t-M/m/Wd9TXkWxAQAJ", "https://groups.google.com/g/bureau-749-20241080p/c/kVMicVeEhwE/m/PD5AEAAcAwAJ", "https://groups.google.com/g/bureau-749-taiwan/c/nTm_CC-iF8o/m/qSd1fuUvAQAJ", "https://colab.research.google.com/drive/1fZTWcbHM9JR1yJPbd5nnIGk1RbHXjpwR?usp=sharing", "https://colab.research.google.com/drive/1dHCoB1aptVcfcS6Xb7KnLiYvwxXgIkGH?usp=sharing", "https://open.spotify.com/episode/50ebuB8NTWVsAQhZNiomB1", "https://bento.me/tiger-wolf-rabbit-tw", "https://the-volunteers-the-battle-of-life-and-death.hashnode.dev/2024-1080", "https://taplink.cc/thevolunteersthebattleoflifea", "https://bio.link/rabita", "https://linktr.ee/rabita1", "https://medium.com/@karllone/%E5%BF%97%E6%84%BF%E5%86%9B-%E5%AD%98%E4%BA%A1%E4%B9%8B%E6%88%98-2024-%E5%AE%8C%E6%95%B4%E7%89%88-%E5%9C%A8%E7%B7%9A%E8%A7%80%E7%9C%8B-1080%E4%B8%AD%E6%96%87%E9%85%8D%E9%9F%B3%E9%9B%BB%E5%BD%B1-5fbbcc4eace3", "https://open.firstory.me/story/cm1qn6r5d007s01ube4rihpww", "https://rentry.co/Rabita", "https://pastelink.net/e5bwdy60", "https://pastebin.com/7z1QirpB", "https://paste.firnsy.com/paste/RWZHRNkmQoF", "https://etextpad.com/ono2c6sulp", "https://paste.feed-the-beast.com/view/1fc6215b", "https://paiza.io/projects/D_Se2IeVngm2e-FeOX9atw?language=php", "https://pastebin.mozilla.org/EkS6EGUv", "https://pastebin.freeswitch.org/view/58c12aad", "https://paste.toolforge.org/view/7dffece4", "https://snippet.host/pbxbmx", "https://justpaste.it/b5nfa", "https://paste.intergen.online/view/a91cfbea", "https://tempel.in/view/VCAnS", "https://telegra.ph/Rabita-10-01", "https://notes.io/w2Up1", "https://www.pastery.net/rgtxyz/", "https://tech.io/snippet/dxPptGr", "https://ideone.com/zwgRSk", "https://glot.io/snippets/h0gcpi6mzx", "https://glot.io/snippets/h0gcpmy0in", "https://glot.io/snippets/h0gcpsmca4", "https://glot.io/snippets/h0gcpym4zx", "https://jsitor.com/ARQLb5nCfE", "https://hackmd.io/@babayonyo/Sk9XIoKAC", "https://ivpaste.com/v/mqVEt5vGwx", "https://jsfiddle.net/9jn0dtc3/" ]; const linkList = document.getElementById('link-list'); links.forEach(link => { const listItem = document.createElement('li'); const anchor = document.createElement('a'); anchor.href = link; anchor.textContent = link; anchor.target = "_blank"; // Open link in a new tab listItem.appendChild(anchor); linkList.appendChild(listItem); }); </script> </body> </html>

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue