Open In App

GATE | GATE CS 2021 | Set 1 | Question 47

Consider the following C program.
 




#include <stdio.h>
 
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 not compile successfully



(B)

The program will compile successfully and output 10 when executed

(C)

The program will compile successfully and output 8 when executed

(D)

The program will compile successfully and output 13 when executed


Answer: (B)
Explanation:

The program will compile successfully and output 10 when executed.

Quiz of this Question
Please comment below if you find anything wrong in the above post

Article Tags :