Sunday, September 27, 2009

The first c program

#include
#include (header files)
main()            (this is the place where program starts)
{
printf("this is my first c program"); (printf command is used to print the message to screen)
}


Note:the text in green color need not to be written in the compiler.they are just for the information of readers

No comments:

Post a Comment

Please give your comments or ask your questions here...