what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / vaibhav
the output will be
2(no. of inputs) <last number entered>
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
Why is sizeof () an operator and not a function?
What is string constants?
What is boolean in c?
What does the && operator do in a program code?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
How to write c functions that modify head pointer of a linked list?
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Difference between goto, long jmp() and setjmp()?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
What does & mean in scanf?
Explain the difference between strcpy() and memcpy() function?
How can a process change an environment variable in its caller?
What is the use of function in c?
write an algorithm to display a square matrix.
any "C" function by default returns an a) int value b) float value c) char value d) a & b