#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 / poorna
Warning: Function Should have return value........
| Is This Answer Correct ? | 4 Yes | 5 No |
Post New Answer View All Answers
explain what are actual arguments?
How can I use a preprocessorif expression to ?
Explain what is wrong with this program statement? Void = 10;
Explain continue keyword in c
how do you programme Carrier Sense Multiple Access
What are the types of assignment statements?
How do you define a string?
Why should I prototype a function?
How can a program be made to print the line number where an error occurs?
Explain the difference between malloc() and calloc() in c?
What are the 5 types of organizational structures?
What is the explanation for prototype function in c?
What is a double c?
When should you use a type cast?
What is this infamous null pointer, anyway?