what is the output of
printf("%d",(scanf("%d",10));
Answer Posted / hema
In Unix enviroment, this gives warning while compilation
and core when executed with a user value. Since scanf
expects a variable( address) to store the value, whereas
here we are assinging value to constant.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
how to create duplicate link list using C???
Why is structure padding done in c?
What will be the outcome of the following conditional statement if the value of variable s is 10?
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
Write a program for Overriding.
How can I implement a delay, or time a users response, with sub-second resolution?
What extern c means?
Can you please explain the difference between exit() and _exit() function?
Write a program to generate the Fibinocci Series
to find the closest pair
Explain which function in c can be used to append a string to another string?
What is meant by 'bit masking'?
What is an endless loop?
What is string concatenation in c?
Explain how do you search data in a data file using random access method?