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
What is the difference between a function and a method in c?
List the variables are used for writing doubly linked list program.
Explain the array representation of a binary tree in C.
How can my program discover the complete pathname to the executable from which it was invoked?
what type of questions arrive in interview over c programming?
Explain how can you tell whether two strings are the same?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
Why does everyone say not to use gets?
What are the benefits of organizational structure?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
How can I avoid the abort, retry, fail messages?
What is #define size in c?
Tell me when would you use a pointer to a function?