# 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
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
What is pass by reference in c?
What are the different types of constants?
What is preprocessor with example?
What is the significance of scope resolution operator?
How is a macro different from a function?
What is the difference between single charater constant and string constant?
Is boolean a datatype in c?
What happens if a header file is included twice?
What is the size of structure in c?
What is masking?
What is the purpose of the preprocessor directive error?
Can you please explain the difference between malloc() and calloc() function?
How do we declare variables in c?
Are comments included during the compilation stage and placed in the EXE file as well?