What is operator promotion?
No Answer is Posted For this Question
Be the First to Post Answer
differentiate built-in functions and user – defined functions.
Are negative numbers true in c?
which of the following go out of the loopo if expn 2 becoming false a.while(expn 1){...if(expn 2)continue;} b.while(!expn 1){if(expn 2)continue;...} c.do{..if(expn 1)continue;..}while(expn 2); d.while(!expn 2){if(expn 1)continue;..}
How does the C program handle segmentation faults?
What are enums in c?
What is Memory leakage ?
What are local static variables? How can you use them?
int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ?
how do you redirect stdout value from a program to a file?
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?????????????
Is Exception handling possible in c language?
What is call by value in c?