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 / darpan
AB
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
how to create duplicate link list using C???
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What do you mean by invalid pointer arithmetic?
How do we print only part of a string in c?
in iso what are the common technological language?
What is C language ?
If a five digit number is input through the keyboard, write a program to print a new number by adding one to each of its digits.For example if the number that is input is 12391 then the output should be displayed as 23402
What is variable declaration and definition in c?
What is structure padding and packing in c?
How many keywords are there in c?
What is the difference between exit() and _exit() function in c?
What does it mean when the linker says that _end is undefined?
What is LINKED LIST? How can you access the last element in a linked list?
How can I recover the file name given an open stream?
What is the use of bitwise operator?