main()
{
int a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}
Answer Posted / amalu
32
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is the size of enum in c?
Can we change the value of static variable in c?
Why header files are used?
Tell me can the size of an array be declared at runtime?
Why can't I perform arithmetic on a void* pointer?
What is the most efficient way to count the number of bits which are set in an integer?
What is #define in c?
How do you list a file’s date and time?
When should we use pointers in a c program?
What does c mean before a date?
How can I read and write comma-delimited text?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
Is array name a pointer?
Why dont c comments nest?
What oops means?