what is the output of
printf("%d",(scanf("%d",10));
Answer Posted / kamal
scanf() returns integer value for number sucessful entry taken.
Due to this cause of taking integer value at address 10 it
will print 1 otherwise 0;
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
What are the rules for the identifier?
What is wrong in this statement?
What is masking?
How can I list all of the predefined identifiers?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
Why do we need a structure?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
What are the 5 types of inheritance in c ++?
Explain how to reverse singly link list.
An arrangement of information in memory in such a way that it can be easily accessed and processed by a programming language a) string b) data structure c) pointers d) array
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What is pointer to pointer in c language?
What are the different categories of functions in c?
What math functions are available for integers? For floating point?
How can I recover the file name given an open stream or file descriptor?