What is the stack in c?
No Answer is Posted For this Question
Be the First to Post Answer
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 the OOPs concept?
who will call your main function in c under linux?
Prove or disprove P!=NP.
Write the test cases for checking a variable having value in range -10.0 to +10.0?
Is linux written in c?
Write a simple program to find the size of different basic data types in C.
Can you add pointers together? Why would you?
Is it better to use a macro or a function?
c program to print a name without using semicolon
What is c language & why it is used?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?