9 lines
151 B
C
9 lines
151 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main(void) {
|
||
|
printf("%d\n", 31);
|
||
|
printf("%o\n", 031);
|
||
|
printf("%x\n", 0x31);
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|