what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / hari
without entering the values the output will not be
displayed.
no output
Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Where register variables are stored in c?
What is abstract data structure in c?
What does the file stdio.h contain?
Why do some versions of toupper act strangely if given an upper-case letter?
Is there any data type in c with variable size?
When should you not use a type cast?
Write a program that accept anumber in words
Which is more efficient, a switch statement or an if else chain?
Write a program of advanced Fibonacci series.
4. main() { int c=- -2; printf("c=%d",c); }
What is binary tree in c?
Explain how do you use a pointer to a function?
What is sizeof int?
Write a program to swap two numbers without using third variable in c?