main()
{
int x=5;
printf("%d %d %d\n",x,x<<2,x>>2);
}
what is the output?
Answer Posted / mannucse
5
20
5
| Is This Answer Correct ? | 1 Yes | 10 No |
Post New Answer View All Answers
What is #line used for?
Explain how can I prevent another program from modifying part of a file that I am modifying?
Is fortran faster than c?
How old is c programming language?
What is spark map function?
What is the right type to use for boolean values in c?
What is difference between structure and union with example?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier. Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed. When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed. Sequence of take-off is the sequence of addition to the waitlist
Why c is called procedure oriented language?
in linking some of os executables are linking name some of them
Why is c called a mid-level programming language?
What is #include conio h?
What are the 4 types of functions?
code for replace tabs with equivalent number of blanks