10 lines
157 B
C
10 lines
157 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
int main(void) {
|
||
|
printf("toto%d\n", 72);
|
||
|
printf("%d\n", 0110);
|
||
|
printf("%d\n", 0x48);
|
||
|
return EXIT_SUCCESS;
|
||
|
}
|