what is output?
main()
{
#define SQR(x) x++ * ++x
int i = 3;
printf("
%d %d
",SQR(i),i * SQR(i));
}
a)9 27
b)35 60
c)20 60
d)15 175

Answer Posted / harichandana

b

Is This Answer Correct ?    5 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain how do you view the path?

647


Can you explain what keyboard debouncing is, and where and why we us it? please give some examples

1646


Explain what is the concatenation operator?

617


What is the difference between union and structure in c?

567


how to create duplicate link list using C???

2065






Why cant I open a file by its explicit path?

589


What is the difference between a free-standing and a hosted environment?

634


What is the difference between far and near ?

676


What is structure in c definition?

568


What are the different types of linkage exist in c?

607


#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??

1539


What is sizeof int in c?

594


What are the benefits of organizational structure?

566


What is a global variable in c?

585


How can I invoke another program (a standalone executable, or an operating system command) from within a c program?

649