
This post will contain a series of simple C programming tutorials and examples. I think this will be helpful to the first years since they're on to this. For discussions on this post, kindly visit the forum.
Print text on screen
#include<stdio.h>
#include<conio.h>
main(){
printf("Hello World!\n");
getch();
return 0;
}
You might be wondering why the conio.h header file was included when our main goal was just to print some...