First
This commit is contained in:
parent
e8548a6d7e
commit
ee80bb109d
|
@ -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;
|
||||||
|
}
|
Loading…
Reference in New Issue