what is the output of
printf("%d",(scanf("%d",10));
Answer Posted / makadivya
10
| Is This Answer Correct ? | 14 Yes | 22 No |
Post New Answer View All Answers
When should structures be passed by values or by references?
What does %p mean c?
Explain main function in c?
What is property type c?
Is c is a high level language?
write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);
How can I get back to the interactive keyboard if stdin is redirected?
What is static identifier?
Differentiate between static and dynamic modeling.
Why is c known as a mother language?
What is wrong with this program statement? void = 10;
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
How can a process change an environment variable in its caller?
How can a program be made to print the name of a source file where an error occurs?
What is dynamic dispatch in c++?