Pour afficher un texte :
#include <stdio.h>
#include <stdlib.h>
int main()
{
printf("I'm a Programmer\n");
return 0;
}
Ecran :
I'm a Programmer
_
* Remarque !
"\n" Retour à la ligne.
"\t" Tabulation
"\b" Backspace
printf ( fonction d'afficher quelque chose )
"\t" Tabulation
"\b" Backspace
printf ( fonction d'afficher quelque chose )