DEV_BUT1/DEV1.1/CONTROLE/triage.c

13 lines
224 B
C
Raw Normal View History

2022-10-18 14:50:36 +02:00
#include <stdio.h>
#include <stdlib.h>
int main(void){
double a = 2.0;
int b = 02;
char c = (char) '\x32';
long int d = 2L;
printf("%.0lf\n", a);
printf("%d\n", b);
printf("%c\n", c);
printf("%ld\n", d);
return 0;
}