Compile your code online using Codepad.org

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"); }
Code language: Arduino (arduino)
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…

View Comments

Recent Posts

  • Java

Java URL Encoder/Decoder Example

Java URL Encoder/Decoder Example - In this tutorial we will see how to URL encode/decode…

4 years ago
  • General

How to Show Multiple Examples in OpenAPI Spec

Show Multiple Examples in OpenAPI - OpenAPI (aka Swagger) Specifications has become a defecto standard…

4 years ago
  • General

How to Run Local WordPress using Docker

Local WordPress using Docker - Running a local WordPress development environment is crucial for testing…

4 years ago
  • Java

Create and Validate JWT Token in Java using JJWT

1. JWT Token Overview JSON Web Token (JWT) is an open standard defines a compact…

4 years ago
  • Spring Boot

Spring Boot GraphQL Subscription Realtime API

GraphQL Subscription provides a great way of building real-time API. In this tutorial we will…

4 years ago
  • Spring Boot

Spring Boot DynamoDB Integration Test using Testcontainers

1. Overview Spring Boot Webflux DynamoDB Integration tests - In this tutorial we will see…

4 years ago