# 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
Tell me is null always defined as 0(zero)?
how to execute a program using if else condition and the output should enter number and the number is odd only...
write a program fibonacci series and palindrome program in c
What are the restrictions of a modulus operator?
Is c object oriented?
Tell me with an example the self-referential structure?
What are the basic data types associated with c?
What is the meaning of typedef struct in c?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
Can we use visual studio for c?
write a c program for swapping two strings using pointer
What is pragma c?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is property type c?
What is the role of && operator in a program code?