# 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 / sivasyam
with out using conditional opraters and conditional
statments(i.e &,| etc, and if,whileand etc.,) find the
bigeesst value between two values
Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Why c is called a mid level programming language?
Subtract Two Number Without Using Subtraction Operator
write a program to copy the string using switch case?
What is zero based addressing?
Give me the code of in-order recursive and non-recursive.
What is #error and use of it?
What is the difference between volatile and const volatile?
What is 02d in c?
What are nested functions in c?
What is structure padding and packing in c?
What is #line?
What is the difference between abs() and fabs() functions?
What does %c mean in c?
What are header files? What are their uses?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none