#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


Please Help Members By Posting Answers For Below Questions

write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

2263


Explain how do you sort filenames in a directory?

600


Is c programming hard?

572


What is a floating point in c?

594


Can a local variable be volatile in c?

573






what do the 'c' and 'v' in argc and argv stand for?

640


Why does notstrcat(string, "!");Work?

637


Explain what are preprocessor directives?

621


What is multidimensional arrays

624


What is signed and unsigned?

632


The program will first compute the tax you owe based on your income. User is prompted to enter income. Program will compute the total amount of tax owed based on the following: Income Tax 0 - $45,000 = 0.15 x income $45,001 - $90,000 = 6750 + 0.20 x (income – 45000) $90,001 - $140,000 = 15750 + 0.26 x (income – 90000) $140,001 - $200,000 = 28750 + 0.29 x (income – 140000) Greater than $200,000 = 46150 + 0.33 x (income – 200000) Dollar amounts should be in dollars and cents (float point numbers with two decimals shown). Tax is displayed on the screen.

1056


What is static identifier?

697


Who developed c language and when?

573


what will be maximum number of comparisons when number of elements are given?

1406


What is new line escape sequence?

803