#define f(g,h) g##h
main O
int i=0
int var=100
;
print f ("%d"f(var,10));}
what would be the output?
Answer Posted / ricky
It will show an error:
Undefined symbol var10 in main function
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
Can you explain what keyboard debouncing is, and where and why we us it? please give some examples
Why n++ execute faster than n+1 ?
Why do we need volatile in c?
What is the acronym for ansi?
What is uint8 in c?
Compare array data type to pointer data type
How many levels of indirection in pointers can you have in a single declaration?
int i=10; printf("%d %d %d", i, i=20, i);
Explain heap and queue.
Explain what could possibly be the problem if a valid function name such as tolower() is being reported by the c compiler as undefined?
When we use void main and int main?
What functions are used for dynamic memory allocation in c language?
What is the difference between far and near in c?
How is a structure member accessed?
What are the valid places to have keyword “break”?