main()
{
char as[] = "\\0\0";
int i = 0;
do{
switch( as[i++]) {case '\\' : printf("A");
break;
case 0 : printf("B");
break;
default : printf("C");
break;
}}
while(i<3);
}
Answer Posted / srikanth
ACB
| Is This Answer Correct ? | 18 Yes | 1 No |
Post New Answer View All Answers
Where are local variables stored in c?
What is the difference between int main and void main in c?
int i=10; printf("%d %d %d", i, i=20, i);
What is the use of volatile?
What is graph in c?
What are the types of assignment statements?
What are the types of arrays in c?
What is #include cctype?
How does free() know explain how much memory to release?
What are the types of data structures in c?
When is the “void” keyword used in a function?
What is scanf () in c?
What are void pointers in c?
What is a loop?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.