Language C Tutorial

The C program is a set of functions.
The program execution begins by executing the function main ().

#include 
main(){
  printf("Hi \n");
}
Hi