1.

Consider the following A NSI C program.#include int main( ){int i, j, count;count = 0;i = 0;for (j = -3; j <= 3; j++){if ((j >= 0) && (i++))count = count + j;}count = count + i;printf("%d", count);return 0;}Which one of the following options is correct?

A. The program will compile successfully and output 10 when executed.
B. The program will compile successfully and output 8 when executed.
C. The program will compile successfully and output 13 when executed.
D. The program will not compile successfully.
Answer» B. The program will compile successfully and output 8 when executed.


Discussion

No Comment Found