update
This commit is contained in:
15
DEV.1.1/CM1/ex2.c
Normal file
15
DEV.1.1/CM1/ex2.c
Normal file
@@ -0,0 +1,15 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main(void) {
|
||||
short int a = 7;
|
||||
unsigned char b = 77;
|
||||
float c = 777;
|
||||
long int d = 7777;
|
||||
|
||||
printf("%03hd\n", a);
|
||||
printf("%c\n", b);
|
||||
printf("%.0f\n", c);
|
||||
printf("%lx\n", d);
|
||||
return EXIT_SUCCESS;
|
||||
}
|
Reference in New Issue
Block a user