main()
{
int a=4,b=2;
a=b<<a + b>>2;
printf("%d", a);
}
Answer Posted / vineetha
tell this answer and mail to this id vachika90@gmail.com
Is This Answer Correct ? | 8 Yes | 2 No |
Post New Answer View All Answers
Write a program for finding factorial of a number.
What is return in c programming?
Does c have circular shift operators?
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
Differentiate between a structure and a union.
How do I use strcmp?
When should volatile modifier be used?
What is multidimensional arrays
Can we add pointers together?
What is d scanf?
What are different types of operators?
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
When should a type cast be used?
Explain Function Pointer?
When is the “void” keyword used in a function?