# define prod(a,b)=a*b
main()
{
int x=2;
int y=3;
printf("%d",prod(x+2,y-10)); }
the output of the program is
a.8
b.6
c.7
d.none
Answer Posted / shinu
d
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Stimulate calculator using Switch-case-default statement for two numbers
What are enums in c?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
What are the different data types in C?
What is linear search?
What is bubble sort technique in c?
Write a program to swap two numbers without using the third variable?
Explain how do you list a file’s date and time?
How does struct work in c?
Explain what is the difference between functions abs() and fabs()?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
what are the different storage classes in c?
What 'lex' does?
Why pointers are used in c?
Can we change the value of #define in c?