C Tutorial/Language/First Program
Версия от 14:21, 25 мая 2010; (обсуждение)
First program in C
- The C program is a set of functions.
- The program execution begins by executing the function main ().
#include <stdio.h>
main(){
printf("Hi \n");
}
Hi