Structure of a C program:
#include<header file>
Int main()
{
----;
---;
---;
}
The # sign tells the compiler to include the header file(generally iostream)
Header file is included as it is the standard library of all readymade C commands that are fed to the compiler. "Iostream" stands for input output library and has various commands like cin>>, cout<<, basic arithmetic operations.
Header file is included as it is the standard library of all readymade C commands that are fed to the compiler. "Iostream" stands for input output library and has various commands like cin>>, cout<<, basic arithmetic operations.
The main() is very crucial in C. The Main() is a C function and just like a calculator returns a value, the main function returns integer value. So we write int before main.
The compilers like turbo C/C++ even allow us yo return no value from main function i.e. void
So we sometimes write void main().
The sequence of commands that the compiler has to follow are written between the curly brackets.
The statement in C are ended with ' ; '
Before writing your first C program u need to equip with these things first!
Data types in C :
Data type of a variable simply means what kind of data is going to be stored in the declared variable.
There are following data types in C
1. Numeric:
It consist of integer(denoted by int) ex:4, -78, etc and floating types (denoted by float) ex: 3.14,-5.67, etc.
2.strings and character:
Strings are composed of character, symbols and numbers. They are enclosed within double quotations.
You have to include string file first.
Ex:
#include<string>
Int main()
{
string a= "hi, I am John! ";
}
Characters are single letters or symbols that are enclosed within single quotes.
Ex: char letter= 'a';
3. Boolean :
It either returns 0 (false) or 1 (true).
Ex - bool official= false;
Variable declaration:
In C/ C++ we deal most of the manipulation by assuming variables first and then we try to solve the problem in terms of those variables.
Where to write C program:
On PC or laptop u can download free IDEs (Integrated Development Environment) which consists of editor as well as a compiler.
For androids I would suggest u a free IDE named CPPdroid.
Here I am using the same.
Your first programs:
1) Program to print your name
We will use printf(" Text to be printed is typed here") Command.
Don't forget to end the sentence with ;.
This is how ur program looks after excecution.
2) Let's try another one , say, program that prints sum of two numbers
We will have to first declare two variables(say integers a and b) whose sum is to be taken and a third variable named "sum" For better understanding of the program.
here I've used std::cout command. It means standard output and it is used to display the output in my mobile IDE. But with turbo C++ u can directly u use cout command.
This is ur source code!
We will use printf(" Text to be printed is typed here") Command.
Don't forget to end the sentence with ;.

This is your source code written in CPPdroid.
2) Let's try another one , say, program that prints sum of two numbers
We will have to first declare two variables(say integers a and b) whose sum is to be taken and a third variable named "sum" For better understanding of the program.
here I've used std::cout command. It means standard output and it is used to display the output in my mobile IDE. But with turbo C++ u can directly u use cout command.
This is ur source code!
It is the excecution of ur commads.
Conclusions:
1. You will be equipped with some basics and tools( CPPdroid, turbo C++ ) essential to code ur first C program
2. You will be guided to write ur first C program.
Conclusions:
1. You will be equipped with some basics and tools( CPPdroid, turbo C++ ) essential to code ur first C program
2. You will be guided to write ur first C program.
Was it helpful for u? Do u have any suggestions?
Comments
Post a Comment