This commit is contained in:
“[JMF]” 2021-10-07 11:35:08 +02:00
parent e8548a6d7e
commit ee80bb109d
1 changed files with 15 additions and 0 deletions

15
TP2/printf.c Normal file
View File

@ -0,0 +1,15 @@
#include <stdio.h>
int main () {
int i = 1;
float f = 1.0 ;
char c = 'c';
printf("%d %f %c \n",i,f,c);
printf("i = %d est un entier \n",i);
printf("f = %f est un float \n",f);
printf("c = %c est un char \n",c);
return 1;
}