Q.1
Find the output of the following program.
#include<stdio.h>
void main()
{
   int y=10;
   if(y++>9 && y++!=10 && y++>11)
      printf("%d", y);
   else
      printf("%d", y);
}
Q.2
What will be the value of sum after the following program is executed?
void main()
{
   int sum=1, index = 9;
   do{
      index = index – 1;
      sum *= 2;
   }while( index > 9 );
}
Q.3
What is the right choice, if the following loop is implemented?
void main()
{
   int num = 0;
   do{
      --num;
      printf("%d", num);
   }while( ++num >= 0 );
}
Q.4
What will be the final value of the digit?
void main()
{
   int digit = 0;
   for( ; digit <= 9; )
   digit++;
   digit  *= 2;
   --digit;
}
Q.5
What will be the following code's output if choice = 'R'?
switch(choice)
{
   case 'R' : printf("RED");
   case 'W' : printf("WHITE");
   case 'B' : printf("BLUE");
   default  : printf("ERROR");break;
}
Q.6
Which command is used to skip the rest of a loop and carry on from the top of the loop again?
Q.7
What is the output of the following program?
#include<stdio.h>
int c[10] = {1,2,3,4,5,6,7,8,9,10};   
main()
{
   int a, b=0;
   for(a=0;a<10;++a)
      if(c[a]%2 == 1)
         b+=c[a];
   printf("%d", b);
}
Q.8
What is the output of the following statements?
for(i=10; i++; i<15)
   printf("%d ", i);
Q.9
The type of the controlling expression of a switch statement cannot be of the type ........
Q.10
What's wrong in the following statement, provided k is a variable of type int?
for(k = 2, k <=12, k++)
Q.11
What will be the output of given program?
#include<stdio.h>
void main()
{
	int a=1;
	if("%d=hello", a);
}
Q.12
What will be the output of given program?
#include<stdio.h>
void main()
{
	int a=3;
	for(;a;printf("%d ", a--);
}
Q.13
What will be the output of given program?
#include<stdio.h>
void main()
{
      int i=1, j=-1;
      if((printf("%d", i)) < (printf("%d", j))) 
            printf("%d", i);
      else 
            printf("%d", j);
}
Q.14
What will be the output given program?
#include<stdio.h>
void main()
{
	int i = -10;
	for(;i;printf("%d ", i++));
}
Q.15
What will be the output of the following piece of code?
for(i = 0; i<10; i++);
printf("%d", i);
Q.16
What will be the output of the given program?
#include<stdio.h>
void main()
{
	int a=11,b=5;
	if(a=5) b++;
	printf("%d %d", ++a, b++);
}
Q.17
What will be the output of the following code?
#include
void main()
{
    int s=0;
    while(s++<10)
    {
        if(s<4 && s<9)
        continue;
        printf("%dt", s);
    }
}
Q.18
What will be the output of the given program?
#include<stdio.h>
void main()
{
      int value=0;
      if(value)
            printf("well done ");
      printf("examveda");
}
Q.19
What will be the output of the given program?
#include<stdio.h>
void main()
{
	int value1, value2=100, num=100;
	if(value1=value2%5) num=5;
	printf("%d %d %d", num, value1, value2);
}
Q.20
What will be the output of the given program?
#include
void main()
{
	float num=5.6;
	switch(num){
		case 5:printf("5");
		case 6:printf("6");
		default : printf("0");
			break;

	}
	printf("%d", num);
}
0 h : 0 m : 1 s