main()
{
int a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}
Answer Posted / ram
Ans=32
| Is This Answer Correct ? | 273 Yes | 22 No |
Post New Answer View All Answers
How can a string be converted to a number?
Between macros and functions,which is better to use and why?
When should you use a type cast?
how can i write a program that prints out a box such that whenever i press any key8(coordinate number) on the keyboard, the box moves.
What are the differences between new and malloc in C?
Tell us two differences between new () and malloc ()?
What is the advantage of using #define to declare a constant?
Explain what is wrong with this statement? Myname = ?robin?;
What are loops c?
Explain low-order bytes.
Which programming language is best for getting job 2020?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
What is string function c?
What does. int *x[](); means ?
Can true be a variable name in c?