What is break in c?
No Answer is Posted For this Question
Be the First to Post Answer
Is c a great language, or what?
what do you mean by inline function in C?
what is self refrential structure
How can I make sure that my program is the only one accessing a file?
Can a void pointer point to a function?
What does typeof return in c?
How to establish connection with oracle database software from c language?
What is the difference between #include and #include 'file' ?
What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation
What is getch?
Explain modulus operator. What are the restrictions of a modulus operator?
#define f(x) main() { printf("\n%d",f(2+2)); }