what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / nani
The result of this program will be:
you have to enter two int numbers
output : 2 <the last number entered>
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the difference between test design and test case design?
Is there sort function in c?
Explain what happens if you free a pointer twice?
Is flag a keyword in c?
PROGRAM TO WRITE CONTENTS OF 1 FILE IN REVERSE TO ANOTHER FILE,PROGRAM TO COPY 1 FILE TO ANOTHER BY SPECIFYING FILE NAMES AS COMMAND LINE
How can I use a preprocessorif expression to ?
What are different types of operators?
What is an identifier?
What are the types of pointers?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
What is the process to generate random numbers in c programming language?
How can I prevent another program from modifying part of a file that I am modifying?
Differentiate between declaring a variable and defining a variable?
List the different types of c tokens?
What are the different properties of variable number of arguments?