Thursday 26 January 2017

Try c language

/* This is a c program which shows
Hello World message on execution */
#include <iostream.h>
int main() /* Main function starts from
here*/
{
printf("Hello World!") /* This statement
will print Hello World message */
return 0;
}

No comments:

Post a Comment