Changes

Langage C

721 bytes added, 19:01, 29 July 2015
/* code part */
printf("Ecrire un caractere : ") // affichage d'un msg au user
recup_char = getchar(); // récupere le caractère sous un format entier
 
===== Function PUTC(STDOUT) =====
this function is used to place a character in a file or to display this value on the screen.
<u>exemple</u>:
'''int''' char_A = 65;
printf("le caractere est : ") // affichage d'un msg au user
putc(char_A, stdout); // affiche la valeur de d'un caractère
 
'''remark''': this function need of two arguments
 
===== Function PUTCHAR() =====
this function is used to place a character in a file or to display this value on the screen.
<u>exemple</u>:
'''int''' char_A = 65;
printf("le caractere est : ") // affichage d'un msg au user
putchar(char_A); // affiche la valeur de d'un caractère
 
'''remark''': this function need of two arguments
==== Trick ====
952
edits