[c] printf
[c] printf 1.소스 #include int test1() { printf("hello world!! \n" ); printf("\n"); } int test2() { int i = 20; printf("int i = %d , %%d = %d, %%o = %o, %%x = %x\n", i, i, i, i ); printf("int i = %d , %%4d = [%4d]\n",i , i ); printf("\n"); } int test3() { unsigned long int i = 100; printf("unsigned long int i = %lu , %%4lu = [%4lu] \n", i , i ); printf("\n"); } int test4() { short int i = 100; pri..
2016. 8. 3.