Open In App

GATE | GATE CS 2021 | Set 1 | Question 47

Like Article
Like
Save
Share
Report

Consider the following C program.
 

C




#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


Last Updated : 11 Aug, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads