int n=1;
while(1)
{
switch(n)
{
case 1:printf("a");
n++;
continue;
case 2:printf("b");
n++;
continue;
default : printf("c");
break;
}
break;
}
How many levels of indirection in pointers can you have in a single declaration?
0 Answers Agilent, ZS Associates,
What is the use of bitwise operator?
how do you redirect stdout value from a program to a file?
Tell me when is a void pointer used?
What are the benefits of organizational structure?
write a program to generate 1st n fibonacci prime number
what is difference between #include<stdio.h> and #include"stdio.h"
What's the difference between calloc() and malloc()?
What is the difference between Printf(..) and sprint(...) ?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits
What is a ternary operator in c?
what is the use of using linked list and array?