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 is stack in c?
What is the difference between malloc calloc and realloc in c?
Explain can you assign a different address to an array tag?
Are c and c++ the same?
Distinguish between actual and formal arguments.
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
What is pointers in c?
How can you draw circles in C?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
When we use void main and int main?
Hai what is the different types of versions and their differences
Can I initialize unions?
What is exit() function?
What is default value of global variable in c?
What is && in c programming?