16 lines
248 B
C
16 lines
248 B
C
|
#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;
|
||
|
}
|