C Tutorial/Statement/Statement
Версия от 14:21, 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