what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / vantees
First of all, we need to give two integer number as input.Since scanf return the no of arguments passed to it, except format specifier.So out is: 2,unknown value
Is This Answer Correct ? | 2 Yes | 7 No |
Post New Answer View All Answers
What is the purpose of realloc()?
Which is not valid in C a) class aClass{public:int x;}; b) /* A comment */ c) char x=12;
What is the function of multilevel pointer in c?
Why do we use return in c?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.
What is the use of function in c?
Why ca not I do something like this?
What is a struct c#?
Difference between strcpy() and memcpy() function?
What is pointers in c?
Why & is used in scanf in c?
What is #line in c?
How do you determine whether to use a stream function or a low-level function?
What does volatile do?
What is pointer & why it is used?