Compile your code online using Codepad.org
- By Viral Patel on July 14, 2009
- General
While surfing through the web, I encounter this wonderful website codepad.org, that can be used to compile/interpret and share code snippets online. A number of language/script option is available which can be used to compile your code online.
I started with writing a simple Hello World C program.
#include <stdio.h>
main()
{
printf("Hello World");
}

Not only you can compile your code snippet online but also share it with others. Codepad.org generates a small URL that can be shared with friends/colleagues and even they can comment on the code snippet.
Although codepad supports C, C++, D, Haskell, Lua, OCaml, PHP, Perl etc but still it does not support some of the popular languages such as Java. I hope they implement the support soon.
Happy Sharing…
Get our Articles via Email. Enter your email address.




you can also have a look at ideone.com. It is quite similar but provides more languages and allowd to submit your input data
Yeah, with ideone collaborative debugging is easier.