engineering recuitment IB JIO (Junior Intelligence Officer) Mock Test 2023 Programming and Data Structure Programming in C
What will be the output of the following program?
int main()
{
int p,q;
for(p=1,q=10;p<6;p++)
printf("%d",(p+q));
return 0;
}
1
Compiler error
2
12 13 1 4 15 16
3
11 12 13 1 4 15
4
11 12 13 1 4 15 16