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 is selection sort in c?
Does free set pointer to null?
What is the use of #include in c?
When should the const modifier be used?
What is a node in c?
How can you find out how much memory is available?
Is file a keyword in c?
What are structural members?
What are global variables and explain how do you declare them?
What are the benefits of c language?
What are the usage of pointer in c?
What is the difference between far and near ?
What are the uses of a pointer?
Is fortran still used today?
How can I convert a number to a string?