Mega Code Archive

 
Categories / C Tutorial / Language
 

First program in C

The C program is a set of functions. The program execution begins by executing the function main (). #include <stdio.h> main(){   printf("Hi \n"); } Hi