what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / vantees
First of all, we need to give two integer number as input.Since scanf return the no of arguments passed to it, except format specifier.So out is: 2,unknown value
| Is This Answer Correct ? | 2 Yes | 7 No |
Post New Answer View All Answers
Where is volatile variable stored?
what are non standard function in c
How do you define CONSTANT in C?
Write program to remove duplicate in an array?
How can I trap or ignore keyboard interrupts like control-c?
What is meant by type casting?
What is a example of a variable?
What is static memory allocation? Explain
What are the types of operators in c?
What does main () mean in c?
What is array of structure in c programming?
What are the types of bitwise operator?
What is a header file?
How do you override a defined macro?
What is a macro?