C Tutorial/Statement/Control Structures — различия между версиями
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
(нет различий)
|
Текущая версия на 10:32, 25 мая 2010
Control Structures
Control structures: sequential, selection, iteration and encapsulation.
A sequential structure is one in which instructions are executed in sequence. For example,
# include<stdio.h>
main()
{
int i=0, j =1;
printf("A");
i = i + 1;
printf("B");
j = j + 1;
printf("C");
}
ABC
Selection structure
The sequence of the instruction is determined by the condition.
The statements in this category are if and switch.
# include<stdio.h>
main(){
int i=0, j =1;
if (i > j){
i = i + 1;
printf("a");
}
else{
printf("b");
j = j +1;
}
}
b