what is the output for the code :
main()
{
int i,j;
printf("%d %d ",scanf("%d%d",&i,&j));
}
Answer Posted / sundar
for give input is 1 2
an output is 22
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
How are structure passing and returning implemented?
Why can’t constant values be used to define an array’s initial size?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
What does the c in ctime mean?
What is the process to create increment and decrement stamen in c?
Where register variables are stored in c?
Explain how can you check to see whether a symbol is defined?
how can f be used for both float and double arguments in printf? Are not they different types?
What is meant by inheritance?
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
What are the 4 types of organizational structures?
How are 16- and 32-bit numbers stored?
Can we declare function inside main?
pierrot's divisor program using c or c++ code
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?