# 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
Can you please explain the difference between syntax vs logical error?
What are pointers? What are different types of pointers?
What is the purpose of scanf() and printf() functions?
What is the difference between printf and scanf in c?
Explain union. What are its advantages?
about c language
What is s in c?
What is this pointer in c plus plus?
What are the valid places to have keyword “break”?
Do variables need to be initialized?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
What is multidimensional arrays
while initialization of array why we use a[][2] why not a[2][]...?
Write a program to swap two numbers without using a temporary variable?
What is difference between static and global variable in c?