#include <stdio.h>
#define sqr(x) (x*x)
int main()
{
int x=2;
printf("value of x=%d",sqr(x+1));
}
What is the value of x?
Answer Posted / bhagya
absolutely 5
| Is This Answer Correct ? | 16 Yes | 0 No |
Post New Answer View All Answers
What is the size of enum in bytes?
What is a list in c?
How do you define a function?
Which built-in library function can be used to match a patter from the string?
What is the easiest sorting method to use?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b
What is memcpy() function?
What are identifiers and keywords in c?
Explain how to reverse singly link list.
What are header files and what are its uses in C programming?
Can we use visual studio for c?
What is the use of #include in c?
What is a spanning Tree?
What is the c value paradox and how is it explained?
Why doesnt that code work?