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>URL List</title> <style> body { font-family: Arial, sans-serif; background-color: #f4f4f4; color: #333; margin: 0; padding: 20px; } .container { max-width: 800px; margin: auto; background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); } h1 { text-align: center; } ul { list-style-type: none; padding: 0; } li { margin: 10px 0; } a { text-decoration: none; color: #007bff; } a:hover { text-decoration: underline; } </style> </head> <body> <div class="container"> <h1>List of URLs</h1> <ul id="urlList"></ul> </div> <script> const urls = [ "https://scribehow.com/page/FULL_1080p_Xem_Phim_CAM_2024_VietsubThuyet_Minh_YLGzRr0GSb6SQ8zAlpDxQA", "https://scribehow.com/page/XemPhim_CAM_2024_Full_HD_Vietsub_Mien_Phi_The_Sisters__iy5jOFXvQB2WZMrEudsARg", "https://scribehow.com/page/Cam_2024_Full_HD_Vietsub__F2u0iQh0TsmLvep5sUpeeQ", "https://scribehow.com/page/Assistir_Filme_A_Forja_O_Poder_da_Transformacao_2024_Completo_Online_Dublado_E_Legendado_Gratis_2kCXvsmARLS_MoU9cMMwlw", "https://scribehow.com/page/Assistir_A_Forja_O_Poder_da_Transformacao_2024_Completo_Dublado__aQYyUsIeSVKswyXx1QYNqQ", "https://scribehow.com/page/Assistir_Filme_A_Forja_O_Poder_da_Transformacao_2024_Filme_Completo_Em_Portugues_Dublado_Gratis_6u2QMnD5TgOk98EIv_E4UA", "https://www.honor.com/globalgm/club/topicdetail/topicid-3624327411105792", "https://www.honor.com/globalgm/club/topicdetail/topicid-3624328319238145", "https://www.honor.com/globalgm/club/topicdetail/topicid-3624321472036864", "https://www.honor.com/globalgm/club/topicdetail/topicid-3624328868528129", "https://www.honor.com/globalgm/club/topicdetail/topicid-3624338291130369", "https://www.honor.com/globalgm/club/topicdetail/topicid-3624338853068800", "https://www.honor.com/globalgm/club/topicdetail/topicid-3624339484311553", "https://www.honor.com/globalgm/club/topicdetail/topicid-3624340998553600", "https://www.honor.com/globalgm/club/topicdetail/topicid-3624342221094912", "https://www.honor.com/globalgm/club/topicdetail/topicid-3624342936223745", "https://groups.google.com/g/robot-salvaje-2024-pelcula-completa-en-espaol-latino/c/LX1hnBv0xew/m/M_-QTHhxCAAJ", "https://colab.research.google.com/drive/1tdkBlrN7SwCKfmxSlkRrRLfOoRjLIx2n?usp=sharing", "https://bento.me/ver-robot-salvaje-2024-pelicula-completa-en-espanol-latino", "https://ver-robot-salvaje-2024-pelicula-completa-en-espanol-latino.hashnode.dev/cuevana-3ver-robot-salvaje-2024-pelicula-completa-espanol-latino", "https://factsplat.com/users/e38886d8-1c6c-436c-99ff-687b9f039448", "https://open.spotify.com/episode/46vNBIAlbpR5uxFI3sPqVS", "https://taplink.cc/verrobotsalvajeespanol", "https://bio.link/anepic", "https://linktr.ee/anepic", "https://medium.com/@karllone/cuevana-3-ver-robot-salvaje-2024-pel%C3%ADcula-completa-espa%C3%B1ol-lat%C3%ADno-3fea76f665dc", "https://open.firstory.me/story/cm1xoerv40bwd01u0980gb7d9", "https://rom.curseforge.com/paste/b27c8bbe", "https://dictanote.co/n/1080451/", "https://rentry.co/anepic", "https://pastelink.net/bjyjiey8", "https://pastebin.com/jBXU3Rh7", "https://paste.firnsy.com/paste/9VULhnyZLNI", "https://etextpad.com/v9qglkzhoi", "https://paste.feed-the-beast.com/view/381be68c", "https://paiza.io/projects/qro6Tbd9ZWAt2ArjvQZt9g?language=php", "https://pastebin.mozilla.org/OcyaAvk1", "https://pastebin.freeswitch.org/view/7400e219", "https://paste.toolforge.org/view/5bb42cea", "https://snippet.host/chgaec", "https://justpaste.it/i2tq3", "https://paste.intergen.online/view/d2812f63", "https://tempel.in/view/narF7y", "https://telegra.ph/anepic-10-06", "https://notes.io/w3ci5", "https://www.pastery.net/mthqtb/", "https://tech.io/snippet/ggMJdHI", "https://ideone.com/mwcjad", "https://glot.io/snippets/h0lsdelrv2", "https://glot.io/snippets/h0lsdk9bnj", "https://glot.io/snippets/h0lsdpgbli", "https://glot.io/snippets/h0lsdvas6t", "https://jsitor.com/RE1y7MkqP2", "https://hackmd.io/@babayonyo/ry7mUQgJyg", "https://ivpaste.com/v/5AXw4sIUhc", "https://jsfiddle.net/nq0wsfyg/" ]; const urlList = document.getElementById('urlList'); urls.forEach(url => { const li = document.createElement('li'); const a = document.createElement('a'); a.href = url; a.textContent = url; a.target = '_blank'; // Opens in a new tab li.appendChild(a); urlList.appendChild(li); }); </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