main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
Answer Posted / a. k
20 1 5
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
What is the stack in c?
Why clrscr is used after variable declaration?
What is the use of structure padding in c?
Do pointers take up memory?
Write a program for finding factorial of a number.
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
What is abstract data structure in c?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
write a c program for swapping two strings using pointer
Where register variables are stored in c?
What is header file definition?
WRITE A CODE IN C TO SEARCH A FILE FROM NOTEPAD FILE.
Can you assign a different address to an array tag?
How many bytes is a struct in c?
how to make a scientific calculater ?