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
Explain the meaning of keyword 'extern' in a function declaration.
Are global variables static in c?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
Explain is it better to bitshift a value than to multiply by 2?
What is boolean in c?
What is the general form of function in c?
What are control structures? What are the different types?
Why c is called a mid level programming language?
what are non standard function in c
Write a program to print ASCII code for a given digit.
Are there constructors in c?
Explain indirection?
Define and explain about ! Operator?
What is the difference between abs() and fabs() functions?
What is a scope resolution operator in c?