Hello world in C language
//C hello world example
#include <stdio.h>
int main()
{
printf("Hello worldn");
return 0;
}
Purpose of Hello world program may be to say hello to people or the users of your
software or application.
Output of program:

Hello world in C language

  • 1.
    Hello world inC language //C hello world example #include <stdio.h> int main() { printf("Hello worldn"); return 0; } Purpose of Hello world program may be to say hello to people or the users of your software or application. Output of program: