what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answers were Sorted based on User's Feedback
Answer / hari
without entering the values the output will not be
displayed.
no output
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / shahzad
first variable is used to print the no of inputs and
remaining r used to print the values from the last
i.e.third second first.........so on..
| Is This Answer Correct ? | 0 Yes | 4 No |
Answer / anonymous
If u give the input as
1
2
then the output wil be
2
2
| Is This Answer Correct ? | 0 Yes | 4 No |
Answer / monish
The user will enter two nos. The output will be- 2 <First
no. entered>
| Is This Answer Correct ? | 3 Yes | 8 No |
main() { int *ptr=(int*)malloc(sizeof(int)); *ptr=4; printf("%d",(*ptr)+++*ptr++); }
what are the stages of compilation
What is the difference between ‘g’ and “g” in C?
Can u please send me the exam pattern and also Previous papers to javed123go@gmail.com
write a c program to store and print name,address,roll.no of a student using structures?
What is a Deque?
List some applications of c programming language?
WHY DO WE USE A TERMINATOR IN C LANGUAGE?
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Explain Doubly Linked Lists?