what is the most appropriate way to write a multi-statement
macro?
Answer Posted / thunder
Using '\' forward slash at the end of macro,we can able to
write a multi-statement macro's in our source code.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is the use of ?
How are variables declared in c?
Do you have any idea how to compare array with pointer in c?
What are linked lists in c?
How many keywords are there in c?
Can you please explain the difference between strcpy() and memcpy() function?
What is volatile variable in c?
Can we change the value of static variable in c?
How important is structure in life?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What are predefined functions in c?
How can I invoke another program or command and trap its output?
What is the difference between typedef struct and struct?
What is the size of empty structure in c?
How can I change the size of the dynamically allocated array?