# 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
Explain the priority queues?
Why cant I open a file by its explicit path?
What is the use of sizeof?
I came across some code that puts a (void) cast before each call to printf. Why?
What do you understand by normalization of pointers?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What's a good way to check for "close enough" floating-point equality?
Is there any data type in c with variable size?
What is null pointer in c?
What is difference between main and void main?
Differentiate between #include<...> and #include '...'
What is the difference between strcpy() and memcpy() function in c programming?
What does the c preprocessor do?
Why is c called c?
Explain the difference between structs and unions in c?