What is the output of the following code fragment? int x = 24;} printf("%d\n", x); printf("%3d %3d\n", x, x);}
What is the output of the following C program segment? int j = 7; printf("%d, %d", j++, j--);}
What is the output of the following C program? #include #include main() { int sum = 0, n = 1729; do { sum += n % 10; n = n / 10; } while (n>0); printf("%d", sum); }