How can you avoid including a header more than once?
No Answer is Posted For this Question
Be the First to Post Answer
Explain a pre-processor and its advantages.
What is meant by type specifiers?
What is binary tree in c?
What is an operator?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
What does the characters “r” and “w” mean when writing programs that will make use of files?
Is javascript written in c?
Whats wrong with the following function char *string() { char *text[20]; strcpy(text,"Hello world"); return text; }
What is a far pointer in c?
we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
what is the difference between class and unio?