Learn very smallest program in C Programming !

Blog | Technology | #C

Hey Coder, Programmer

If you are interested in Programming languages like C, C++, Python, Kotlin, Java etc..

Then you definitely know about this simplest small program which is used as a basic one in C programming.

First you should know about why we learnt programming.

 

Smallest C Program :

Int main()

{

Printf(“Welcome to my blog”);

}

Now I explain the small program. According to C Programming there is only one main is there.

Learn very smallest program in C Programming !
Learn very smallest program in C Programming !


For example you may know very well about shopping mall. The Shopping mall consist of 1 Entry way and 1 Exit way likewise,

Every C program must have only one main either it is a small program or big program. If you are beginner in C programming then you must aware about this

Second most important thing is SEMICOLON. The semicolon will terminate the line statement.

Lets take a clear overview of programm

·         Only 1 Main

·         Terminate with Semicolon

·         Standard input output ( STDIO.H)

·         # Preprocessor

The another major thing in programming is stdio.h The stdio.h is nothing but a standard input and output it must include in the first line of the program.

After that only initiate with main statement.

The important parameters which is used in C programming are # ( hashtag)

It is called as pre-processor statement. It is used to get the standard input and output. It is pre defined some values or data to the program 

Post a Comment

0 Comments