Program in C
- a01337106
- 11 feb 2015
- 1 Min. de lectura
There are different ways of programming, different compilers and different languages too. We have studied the pseudocode by now, but now we are going to start with C programming.
Here is a little code in C:
#include <stdio.h>
int main () {
printf(“Hola Mundo”);
}
Here is a very simple code. First, it is necessary to start the program with:
#include <stdio.h>
Then, the main is open:
int main{
}
This program will print “Hola Mundo”, for printing you have to write:
printf( );
The values inside ( ) will be printed.
Comentarios