GATE Computer Science (CS) 2021 Shift 1 Solved Paper

© examsiri.com
Question : 47 of 65
 
Marks: +1, -0
Consider the following A NSI 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?
Go to Question: