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
Why does everyone say not to use gets?
Was 2000 a leap year?
Why c is known as a mother language?
What is the explanation for the dangling pointer in c?
What is self-referential structure in c programming?
Can you please explain the difference between malloc() and calloc() function?
formula to convert 2500mmh2o into m3/hr
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
what is the structure pointer?
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
explain what are pointers?
What is wrong in this statement?
I need previous papers of CSC.......plz help out by posting them.......
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
How can I get random integers in a certain range?