Monday, February 17, 2020

C hello world program

/** My first C program */
#include <stdio.h>

int main()
{
  printf("Hello World\n");
  return 0;
}




Output of program:
"Hello World"

No comments:

Post a Comment