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

Answer Posted / ram

Ans=32

Is This Answer Correct ?    270 Yes 22 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a spanning Tree?

947


What is a header file?

631


What are 3 types of structures?

590


What are the 4 data types?

592


What is sizeof return in c?

611






why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above

648


Should a function contain a return statement if it does not return a value?

592


Explain the binary height balanced tree?

718


What is && in c programming?

674


Explain how do you convert strings to numbers in c?

591


What is array of pointers to string?

562


What are keywords c?

596


What is the data segment that is followed by c?

604


Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250

1501


What is scope rule in c?

603