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 are the usage of pointer in c?
What is the explanation for cyclic nature of data types in c?
Why do we need volatile in c?
Explain what is gets() function?
What is fflush() function?
what do u mean by Direct access files? then can u explain about Direct Access Files?
Write a program to generate random numbers in c?
What is %g in c?
How does placing some code lines between the comment symbol help in debugging the code?
How can I trap or ignore keyboard interrupts like control-c?
How do you sort filenames in a directory?
what is a function method?give example?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
What is volatile variable in c with example?
What is extern keyword in c?