14 lines
204 B
C
14 lines
204 B
C
|
/*auteur : Jacques MBOUSSA groupe 5*/
|
||
|
|
||
|
#include<stdio.h>
|
||
|
#include<stdlib.h>
|
||
|
|
||
|
int main(void) {
|
||
|
printf("%u\n");
|
||
|
printf("%s\n");
|
||
|
printf("%.0f\n",0.65);
|
||
|
printf("%hhd\n",'\65');
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|
||
|
|