C is the general purpose and old most language but updated and most powerfull (C)coding language. We are going to learn C language in enviorment of C++. At the end we will be pro developer. Today we are starting our course with help of Virtual university course and other sourse medium. I will shear if i will use. Let's start
We are going to look How we can start our C program. To use C commands In our program we have to include them:
#incloude <iostrem.h>
Don't think about "what is this we will discus it later"
Now every thing in C coding language must b in a main funacation with respect to its syntex. i.e
main (condition if required){
# Our program any thing you went.
}
So, Lets make or built our First program in C language and enjoy.
Like every programing language we will write our First "Hello world" program to the world of C coding language.
#incloude <iostrem.h>
main (){
cout <<"Hello World";
}
Booom.....................
Our First program is ready. Now save it and run.
Result of this program we see :
Hello World
on our screen.
So, that is alright, for Now we will meet in our next post.
Please comment if there is any mistake, suggestion or your remarks about the post.
Thanks!
Regards: MikhAEl S
Comments
Post a Comment