1 2 3 4 5 6 7 8 9 10 11 | #include <stdio.h> int main(void) { int x = 1; printf("(2ÀÇ º¸¼ö Àü) x = %d \n", x); x = ~x; // 1ÀÇ º¸¼ö x = x + 1; // 2ÀÇ º¸¼ö printf("(2ÀÇ º¸¼ö ÈÄ) x = %d, x = %#08X \n", x, x); } | cs |