Your First programme...
firstly install turbo c++ in your system..
copy and paste the code in turbo c++
First Programme..
#include <stdio.h> int main() { /* my first program in C */ printf("Hello, World! \n"); return 0; }
Congratulation...Now you are a Coder...