What are macros in C?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
Macros are preprocessor directives defined using #define to create constants or functions.
| Is This Answer Correct ? | 0 Yes | 0 No |
Macros are preprocessor directives defined using #define to create constants or functions.
| Is This Answer Correct ? | 0 Yes | 0 No |
main is a predefined or user define function if user defined why? if predefined whay?
which operator having highest precedence? a.)+ b.)++ c.)= d.)%
main() { float f1=10.5; double db1=10.5 if(f1==db1) printf("a"); else printf("b") }
What is the use of #include in c?
a=5 a=a++/++a
What is wrong in this statement? scanf(“%d”,whatnumber);
Explain what is wrong in this statement?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
What is the difference between void main() and void main (void) give example programme?
How do you define CONSTANT in C?
Is main is user defined function?
What is wrong with this initialization?