Can include files be nested? How many levels deep can include files be nested?
No Answer is Posted For this Question
Be the First to Post Answer
How do you define structure?
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
What is array in c with example?
Why do we use main function?
What are the disadvantages of external storage class?
The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................
14 Answers HOV Services, IBM, Potty,
why we need function pointers?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is a memory leak in structures? How can we rectify that?
Does c have function or method?
How are Structure passing and returning implemented by the complier?
What is the size of a union variable?