what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / tasneemuddin
The result of this program will be:
you have to enter two int numbers
output : 2 <the last number entered>
| Is This Answer Correct ? | 12 Yes | 6 No |
Post New Answer View All Answers
What is a lookup table in c?
What is the use of typedef in c?
How do I copy files?
write a c program to calculate sum of digits till it reduces to a single digit using recursion
Explain union. What are its advantages?
What is the use of ?: Operator?
where are auto variables stored? What are the characteristics of an auto variable?
How can I implement a delay, or time a users response, with sub-second resolution?
What is pragma in c?
Do pointers need to be initialized?
Is c weakly typed?
write a program to concatenation the string using switch case?
Can you tell me how to check whether a linked list is circular?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none
What is the difference between far and near ?