what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / suraj verma
It will return number of arguments taken
by scanf function which is two in this case
& the other value can be any garbage value.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Can you write a programmer for FACTORIAL using recursion?
How can you return multiple values from a function?
What do you mean by command line argument?
What is c token?
Why shouldn’t I start variable names with underscores?
What is typedf?
What is wrong with this initialization?
What is the use of typedef in structure in c?
What is huge pointer in c?
string reverse using recursion
Under what circumstances does a name clash occur?
What are the loops in c?
Explain how do you convert strings to numbers in c?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above
Explain what are multibyte characters?