# 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 / sivasyam
with out using conditional opraters and conditional
statments(i.e &,| etc, and if,whileand etc.,) find the
bigeesst value between two values
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
When was c language developed?
What is the difference between abs() and fabs() functions?
Can we increase size of array in c?
When is a void pointer used?
What is c language used for?
What is sizeof in c?
How do you define CONSTANT in C?
What is c definition?
How do you convert strings to numbers in C?
What are local static variables?
What is null pointer constant?
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
How many main () function we can have in a project?
Tell me can the size of an array be declared at runtime?