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 what does a function declared as pascal do differently?
What are 'near' and 'far' pointers?
Linked list is a Linear or non linear explain if linear how it working as a non linear data structures
Why void main is used in c?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
Differentiate call by value and call by reference?
Do pointers store the address of value or the actual value of a variable?
Explain the difference between malloc() and calloc() in c?
Explain how do you determine the length of a string value that was stored in a variable?
Write a program to print all permutations of a given string.
What language is lisp written in?
What is gets() function?
What does. int *x[](); means ?
Explain continue keyword in c
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.