Looping

Do you know C programming quiz on Looping

0
Created on By 52fd849a905aedf0249df9e69d61b55a?s=32&d=mm&r=gwefru

Looping

TEST YOUR BROAD SKILLS

1 / 10

Q.91 What will be output if you will compile and execute the following c code? void main(){

if(printf("cquestionbank")) printf("I know c");

else

printf("I know c++");

}

2 / 10

Q.92 What will be output if you will compile and execute the following c code? void main(){

int a=25; clrscr();

printf(" o x",a,a); getch();

}

3 / 10

Q.93 What will be output if you will compile and execute the following c code? int extern x;

void main() printf(" d",x); x=2;

getch();

}

int x=23;

4 / 10

Q.94 What will be output if you will compile and execute the following c code? void main(){

int a,b; a=1,3,15; b=(2,4,6);

 

clrscr();  printf(" d ",a+b); getch();

}

5 / 10

Q.95 What will be output if you will compile and execute the following c code? void main(){

static  main; int x; x=call(main); clrscr(); printf(" d ",x); getch();

}

int call(int address){ address++;

return address;

}

6 / 10

Q.96 What is the right way to access value of structure variable book{ price, page }?

7 / 10

Q.97 perror( ) function used to ?

8 / 10

Q.98 Bitwise operators can operate upon?

9 / 10

Q.99 What is constant?

10 / 10

Q.100 In switch statement, each case instance value must be ?

Your score is

The average score is 0%

0%

Leave a Reply

Your email address will not be published. Required fields are marked *