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
Explain void pointer?
Explain function?
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
If fflush wont work, what can I use to flush input?
What are header files in c programming?
What is this infamous null pointer, anyway?
Explain the difference between malloc() and calloc() function?
What is difference between structure and union in c?
How can I call fortran?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
When should I declare a function?
How was c created?
Write a Program to find whether the given number or string is palindrome.
How can I read/write structures from/to data files?