C Programming : A Journey Begins

C Programming - Basic

Great you are here, Let's start the journey from basic in C Programming.

Now First we get some knowledge about the structure of C Program.
Because, if we need to know about something, we must understand how it works.
Just like to know about someone's likes or dislikes so we can easily handle them.

.

Program Structure of C

Header Files
Constant Variable
data-type main()
{
	//Your Code...
}
data-type Function1(data-type param1, data-type param2, data-type param n)
{
	//Your Code...
}
data-type Function2()
{
	//Your Code...
}

Were, Header Files is Files which contains a in-built functions libraries, Constant Variable is used for fixed value which remains until program is not finished. data-type is used for describing what type of data is, like int for Integer, char for Characters etc... and Functions is the main portion of the C Programming. were main() is the main Function just like a Heart of the C Programming

Now we will execute our first program in any c programming Software.

Previous Post
Introduction To C Programming
Next Post
C Programming - The First Program

Comments

Popular posts from this blog

Syntax of C Program

C Programming - The First Program