Pages

Exercice N°1 de Base "afficher un texte" langage C

vendredi 18 octobre 2013

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 )
 

Most Reading

Stats