#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 are lookup tables in c?
What are the 5 organizational structures?
What are structures and unions? State differencves between them.
The file stdio.h, what does it contain?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is the difference between arrays and pointers?
Do you know the use of fflush() function?
What is the difference between if else and switchstatement
What is wrong with this program statement? void = 10;
Tell me the use of bit field in c language?
What is chain pointer in c?
Using which language Test cases are added in .ptu file of RTRT unit testing???
What is the difference between āgā and āgā in C?
how logic is used
Explain which function in c can be used to append a string to another string?