# 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
What is a volatile keyword in c?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
Is there sort function in c?
how do you execute a c program in unix.
What is pointer & why it is used?
c program for searching a student details among 10 student details
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
Explain the process of converting a Tree into a Binary Tree.
What is static and volatile in c?
Explain how many levels deep can include files be nested?
praagnovation
What are the different types of objects used in c?
How do I copy files?
Explain union.
Take an MxN matrice from user and then sum upper diagonal in a variable and lower diagonal in a separate variables. Print the result