# 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
Why is c platform dependent?
What is a const pointer?
What is c value paradox explain?
What is the size of enum in c?
What is the -> in c?
application areas a 'c' a) operating system b) graphics, interpreter, assembler c) program evalution, communication softwares d) all the above
What are the features of c language?
Explain the difference between call by value and call by reference in c language?
What are the advantages of using macro in c language?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
Write a program to print fibonacci series using recursion?
Is c call by value?
Why c language is called c?
What is the use of function overloading in C?
What is selection sort in c?