main()
{
int a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}

Answer Posted / abhishek ranjan

32

Is This Answer Correct ?    37 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?

749


program to find out date after adding 31 days to a date in the month of febraury also consider the leap year

2570


What is the difference between near, far and huge pointers?

627


What is use of pointer?

583


What is data structure in c programming?

567






What are directives in c?

539


Can stdout be forced to print somewhere other than the screen?

613


Find MAXIMUM of three distinct integers using a single C statement

622


What is substring in c?

634


Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given

2508


What are the loops in c?

589


What is a floating point in c?

598


How do we make a global variable accessible across files? Explain the extern keyword?

1416


HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????

2263


p*=(++q)++*--p when p=q=1 while(q<=6)

1264