#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 / vijaya
5
| Is This Answer Correct ? | 34 Yes | 12 No |
Post New Answer View All Answers
What is structure padding in c?
how to find anagram without using string functions using only loops in c programming
Are the expressions * ptr ++ and ++ * ptr same?
string reverse using recursion
Write a Program to accept different goods with the number, price and date of purchase and display them
How to write a code for reverse of string without using string functions?
What is property type c?
What are types of functions?
Simplify the program segment if X = B then C ← true else C ← false
State the difference between x3 and x[3].
Write a program to find the biggest number of three numbers in c?
What is an identifier?
In C language, the variables NAME, name, and Name are all the same. TRUE or FALSE?
What is main () in c?
Write a program to generate random numbers in c?