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 |
What is the mean of function?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
Is it fine to write void main () or main () in c?
write a sorting prgm to sort 50 nos and sum them and also remove all the occurrences of 15 and print it?
Where is volatile variable stored?
Why c is called top down?
Is c easy to learn?
i got 75% in all semester am i eligible for your company
Are the outer parentheses in return statements really optional?
What is d scanf?
What is the right type to use for boolean values in c?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above