what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / suraj verma
It will return number of arguments taken
by scanf function which is two in this case
& the other value can be any garbage value.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Is c procedural or object oriented?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
program to convert a integer to string in c language'
can anyone please tell about the nested interrupts?
Is main is a keyword in c?
Why & is used in c?
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
Can we declare a function inside a function in c?
Are bit fields portable?
What is the difference between union and anonymous union?
Is main a keyword in c?
What is the explanation for the dangling pointer in c?
What does calloc stand for?
Which of these functions is safer to use : fgets(), gets()? Why?
What is restrict keyword in c?