blob: 9adf81d41b9667115c02eea8078472dea2d86522 [file] [log] [blame] [edit]
#include <stdio.h>
int main() {
printf("%o %o %o %o %o\n", 10, 256, 1023, 1001001, 12345678);
printf("%#o %#o %#o %#o %#o\n", 10, 256, 1023, 1001001, 12345678);
return 0;
}