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 / aspirant
c
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
What does c mean in standard form?
Is struct oop?
Describe wild pointers in c?
In which language linux is written?
I came across some code that puts a (void) cast before each call to printf. Why?
What is data types?
What are Macros? What are its advantages and disadvantages?
how can use subset in c program and give more example
What are the 5 elements of structure?
how many errors in c explain deply
What is ctrl c called?
How is pointer initialized in c?
Explain how do you use a pointer to a function?
What is the difference between fread and fwrite function?