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 |
Write a program which take a integer from user and tell whether the given variable is squar of some number or not. eg: is this number is 1,4,9,16... or not
Which weighs more, a gram of feathers or a gram of gold?
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
Explain 'bus error'?
In C language what is a 'dangling pointer'?
Why do we write return 0 in c?
provide an example of the Group by clause, when would you use this clause
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What are pointers?
0 Answers Accenture, Tavant Technologies, Zensar,
What is the explanation for modular programming?