main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}

Answer Posted / rahul

5,20,1

Is This Answer Correct ?    50 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is function prototype?

609


What is getch () for?

674


Explain the use of function toupper() with and example code?

652


What is operator precedence?

644


Explain the difference between exit() and _exit() function?

632






How to write c functions that modify head pointer of a linked list?

543


What is const keyword in c?

743


Explain Basic concepts of C language?

644


Why are algorithms important in c program?

618


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

1505


Explain what is a static function?

630


write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.

1516


What is variable declaration and definition in c?

501


What is derived datatype in c?

629


What is an auto keyword in c?

641