Statements in C language | Different types of Statements in C programming Language
Basic Syntax Of A C Program_ C Tutorial In Hindi #5
C Programming Tutorial for Beginners: Learn C Programming Language
Structures in C
C Operators based questions
C Language Cheatsheet 🧾 for Beginners 🔥
C Programming For Beginners – A 20 Day Curriculum!
Program of Structures using C Programming
Typedef In C_ C Tutorial In Hindi #38
C vs C++
C language
C Operators Learn the Basics of Programming Step by Step – MPS
Prefix and Postfix increment operator in C Programming [ C Program ]
The Difference Between C Languages in 90 seconds - 720
C Pointers questions -1
Understanding the Difference Between C and C++ Programming Languages
Write a Program to Display your name in C [ 3 Different Methods ]
C Program to Print Multiplication Table of a Given Number: Using C++
How to Compile and Run C Program in Linux
- Expression Statements.
- Compound Statements.
- Selection Statements.
- Iterative Statements.
- Jump Statements.
Expression Statements:
Compound Statement :
There is no need of any semicolon at the end of Compound Statement.
Example for Compound Statement

{
int a=10,b=20,c;
c = a + b;
printf(“value of C is : %d n”,c);
}
You May like : Swapping The Nibbles of Character.
Selection Statements :
Selection Statements are used in decisions making situations we will look about selections statements in Later Tutorials. Here is the few examples of Selection statements
- if

- if…else
- switch
Iterative Statements :
These are also Called as Loops. If we want to Execute a part of program many times we will use loops.We will going to explain each and Every loop in Detail in Later Tutorials. Here is the List of Basic loops in C language.

- for loop.
- while loop.
- do-while loop.
Jump Statements :
These are Unconditional statements Jump statements are useful for Transfer the Control one part of program to other part of Program there are few Jump Statements in C
- goto.
- continue.
- break.
- return.
All these Selection and Iterative and Jump Statements are Keywords and all are Lower Case Characters.




If a C program is a list of statements, where do fit declarations like int a = 0; ? Which are declaration, not statements ? I do not really find an explanation anywhere. Thanks.
Hey Daniel,
int a = 10; also a statement. All the declarations and assignments and operations all are called statements.
So even the declarations also come under the statements.