#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 / grbr
9
| Is This Answer Correct ? | 3 Yes | 8 No |
Post New Answer View All Answers
What is the full form of getch?
What is dynamic memory allocation?
What is structure in c definition?
What is #include stdio h and #include conio h?
What are identifiers c?
What is difference between union All statement and Union?
What is mean by data types in c?
a way in which a pointer stores the address of a pointer which stores the value of the target value a) reference b) allocation c) multiple indirection d) none
Explain what is gets() function?
How can I get random integers in a certain range?
How can I remove the leading spaces from a string?
What is a struct c#?
write a program to find out prime number using sieve case?
write a program to create a sparse matrix using dynamic memory allocation.
What is a static function in c?