what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answers were Sorted based on User's Feedback
Answer / hari
without entering the values the output will not be
displayed.
no output
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / shahzad
first variable is used to print the no of inputs and
remaining r used to print the values from the last
i.e.third second first.........so on..
| Is This Answer Correct ? | 0 Yes | 4 No |
Answer / anonymous
If u give the input as
1
2
then the output wil be
2
2
| Is This Answer Correct ? | 0 Yes | 4 No |
Answer / monish
The user will enter two nos. The output will be- 2 <First
no. entered>
| Is This Answer Correct ? | 3 Yes | 8 No |
Does c have circular shift operators?
A program to write a number of letters and numbers, such as counting and display
What is structure padding & expalain wid example what is bit wise structure?
What are the advantages of using macro in c language?
How can I find out how much free space is available on disk?
Why is sizeof () an operator and not a function?
what is the difference between static variable and register variable?
What are the different data types in C?
what is difference between #include<stdio.h> and #include"stdio.h"
when will be evaluated as true/ if(x==x==x) a) x=1; b) x=0; c) x=-1; d) none
Study the Following Points: a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static 1. Which of the Following Statements are true w.r.t Bit- Fields A)a,b&c B)Only a & b C)Only c D)All
How can I set an array's size at run time?