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
What should malloc(0) do?
What are multibyte characters?
about c language
How can I call a function with an argument list built up at run time?
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
How can I recover the file name given an open stream or file descriptor?
What is getch c?
what will be maximum number of comparisons when number of elements are given?
What is the difference between fread buffer() and fwrite buffer()?
Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
What are loops in c?
What are the applications of c language?
What is difference between stdio h and conio h?
Explain what is the benefit of using an enum rather than a #define constant?
What are integer variable, floating-point variable and character variable?