what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / prashant sharma
first the computer will take the two values as inputs &
then will show junk value
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
What does %p mean?
Explain how can a program be made to print the line number where an error occurs?
What is selection sort in c?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
What do you mean by scope of a variable in c?
What is the use of volatile?
What are the uses of null pointers?
Why calloc is better than malloc?
When c language was developed?
Why does not c have an exponentiation operator?
Explain what is the stack?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is an identifier?
What is dynamic variable in c?