#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 / anil
27
| Is This Answer Correct ? | 3 Yes | 16 No |
Post New Answer View All Answers
How do you override a defined macro?
Is return a keyword in c?
How can I open files mentioned on the command line, and parse option flags?
explain what is an endless loop?
How can I avoid the abort, retry, fail messages?
What is the difference between mpi and openmp?
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?
What is uint8 in c?
Is c language still used?
What is the difference between the expression “++a” and “a++”?
What is sizeof in c?
What is scope and lifetime of a variable in c?
What is the c value paradox and how is it explained?
illustrate the use of address operator and dereferencing operator with the help of a program guys plzzz help for this question
What is the difference between union and structure in c?