int n=1;
while(1)
{
switch(n)
{
case 1:printf("a");
n++;
continue;
case 2:printf("b");
n++;
continue;
default : printf("c");
break;
}
break;
}
Answer Posted / arun
abc
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What are Macros? What are its advantages and disadvantages?
What does it mean when the linker says that _end is undefined?
What is zero based addressing?
Difference between strcpy() and memcpy() function?
What is a program flowchart and explain how does it help in writing a program?
What is file in c language?
What are pointers? Why are they used?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
Explain about C function prototype?
simple program of graphics and their output display
Is r written in c?
What does dm mean sexually?
What are different types of variables in c?
How many levels of pointers can you have?
What is a constant?