what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / 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 |
Post New Answer View All Answers
What are dangling pointers? How are dangling pointers different from memory leaks?
What is array within structure?
When the macros gets expanded?
Why ca not I do something like this?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What are the different types of constants?
What is zero based addressing?
Why do we use null pointer?
Explain how do you override a defined macro?
Explain #pragma statements.
What do you mean by Recursion Function?
Can you explain the four storage classes in C?
When can a far pointer be used?
Which is best book for data structures in c?
how to find anagram without using string functions using only loops in c programming