First C- programming

<-Prev                                                                                                                    Next->
Now we have a knowledge of CHARACTER, KEYWORDS, STATEMENT, HEADER FILES, ASCII CODE, SIMILARITY WITH ENGLISH LANGUAGE & DATA TYPE...So we can procceed for the programming!
Let’s write our first programming:

#include<stdio.h>
#include<conio.h>
void main()
{
                printf(“This is my 1st programming!”);
                getch();
}

Now compile it & run it

The output will be:
    This is my 1st programming!
<-Prev                                                                                                                    Next->

Đăng nhận xét