C Language Class 1 #.
Learn Programming Languages on www.wasimteach.blogspot.com there we share knowledge about all about technology.
C Language Class 1 #.
Lets Start :
Something you have to do in your computer install setup turbo c in your computer or any other c language envronment IDE.
after this write this code in turbo c .
#include
int main()
{
// printf() print the string on the screen
printf("Hello, World!") ;
return 0;
}
after this compile the program and run.