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
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
Can a pointer be static?
What are the uses of null pointers?
What is the difference between single charater constant and string constant?
Write a C program on Centralized OLTP, Decentralized OLTP using locking mechanism, Semaphore using locking mechanism, Shared memory, message queues, channel of communication, sockets and a simple program on Saving bank application program using OLTP in IPC?
Whats s or c mean?
Explain bitwise shift operators?
What is pointer to pointer in c language?
Who is the founder of c language?
Explain Function Pointer?
Is c# a good language?
write a program to find out prime number using sieve case?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
What is a struct c#?
What is c basic?