What is the output of C Program.?
int main()
{
int a=14;
while(a<20)
{
++a;
if(a>=16 && a<=18)
{
continue;
}
printf("%d ", a);
}
return 0;
}
1 Crore+ students have signed up on EduRev. Have you? Download the App |
What is the output of C Program.?
int main()
{
int a=10, b, c;
b=a++;
c=++a;
printf("%d %d %d", a, b, c);
return 0;
}
What is the output of C Program.?
int main()
{
int a=10,b=20;
if(a==9 AND b==20)
{
printf("Hurray..");
}
if(a==10 OR b==21)
{
printf("Theatre");
}
return 0;
}
What is the output of C Program.?
int main()
{
int a=0, b=0;
while(++a < 4)
printf("%d ", a);
while(b++ < 4)
printf("%d ", b);
return 0;
}
10 videos|13 docs|15 tests
|
10 videos|13 docs|15 tests
|