What is the benefit of using #define to declare a constant?
No Answer is Posted For this Question
Be the First to Post Answer
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);
Can we write a program without main() function?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What ios diff. Between %e & %f?
How variables are declared in c?
Explain what does the function toupper() do?
write a function to find whether a string is palindrome or not and how many palindrome this string contain?
What is the difference between #include <header file> and #include “header file”?
how can i get the string which is having two spaces at the end.suppose the string is "Hello World ".Now at the end i have two spaces.i need to print with that spaces .
What is the symbol indicated the c-preprocessor?
totally how much header files r in c language
Can u return two values using return keyword? If yes, how? If no, why?