see-programming is a popular blog that provides information on C programming basics, data structure, advanced unix programming, network programming, basic linux commands, interview question for freshers, video tutorials and essential softwares for students.
Monday 10 June 2013
C program to print "Hello World"
/* C program to print Hello World */
#include <stdio.h>
int main() {
/* printf - prints the given data */
printf("Hello World\n");
return 0;
}
Is
ReplyDelete