int n=1;
while(1)
{
switch(n)
{
case 1:printf("a");
n++;
continue;
case 2:printf("b");
n++;
continue;
default : printf("c");
break;
}
break;
}
How can I manipulate strings of multibyte characters?
What are the different types of data structures in c?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
What do you mean by team??
What is volatile c?
what is difference between array and structure?
44 Answers College School Exams Tests, CTS, Google, HCL, IBM, Motorola, TCS,
Can I initialize unions?
What is the acronym for ansi?
Linked lists -- can you tell me how to check whether a linked list is circular?
Write a program that accept anumber in words
write a program in c language to print your bio-data on the screen by using functions.
Is array a primitive data type in c?