How can this be legal c?
No Answer is Posted For this Question
Be the First to Post Answer
int n=1; while(1) { switch(n) { case 1:printf("a"); n++; continue; case 2:printf("b"); n++; continue; default : printf("c"); break; } break; }
define c
how to print value of e(exp1)up to required no of digits after decimal?
What are the key features of C?
What is call by reference in functions?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
Define and explain about ! Operator?
if p is a string contained in a string?
let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................
What is the difference between formatted&unformatted i/o functions?
In a header file whether functions are declared or defined?
How can I set an array's size at run time?