# 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 / mannucse
d
| Is This Answer Correct ? | 13 Yes | 2 No |
Post New Answer View All Answers
What is the general form of a C program?
How can I discover how many arguments a function was actually called with?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
What is the value of uninitialized variable in c?
What is new line escape sequence?
Why is c so important?
What is the difference between text files and binary files?
Write a code to generate divisors of an integer?
what is event driven software and what is procedural driven software?
For what purpose null pointer used?
What does do in c?
Write program to remove duplicate in an array?
What is data structure in c language?
What is the purpose of macro in C language?
What is the benefit of using #define to declare a constant?