Hello guyz! This time i'm gonna show you the basic in C.
I'm gonna show you the Popular "hello world" in C.
To make the long story short, Let's go immediately to the main point.
In this tutorial were gonna display something. To do that we need to include the Library call Standard Input/Output. To do that, we're going to type this on the most upper part.
#include<stdio.h>
Ok., letz move on in making the Body
#include<stdio.h>
main()
{
clrscr();
printf("Hello world");
getch();
}
maybe you're wondering where are getch() and clrscr() for.
getch() is for us to see the program we did. It slows down the Process of the program to display.
clrscr() is for clearing the screen.
The output would be. like this.
Hello World
//===========================
Ok thanks for reading...
This comment has been removed by the author.
ReplyDelete