C Tutorial/Statement/Statement — различия между версиями
Admin (обсуждение | вклад) м (1 версия: Импорт контента...) |
(нет различий)
|
Текущая версия на 10:32, 25 мая 2010
Each executable statement is terminated by ";"
#include <stdio.h>
main(){
printf("Hi \n");
}
Hi
The statements are enclosed within a block marked by "{" and "}"
#include <stdio.h>
main(){
printf("Hi \n");
printf("Hello \n");
}
Hi Hello