FIND THE OUTPUT IF THE INPUT IS 5 5.75
void main()
{
int i=1;
float f=2.25;
scanf("%d%f",&i,&f);
printf("%d %f",,i,f);
}
ANSWER IS 5 AND 2.25 WHY?
Answer Posted / biren
5 2.25
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
What standard functions are available to manipulate strings?
What is the condition that is applied with ?: Operator?
What are formal parameters?
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
Why c is faster than c++?
What is the role of this pointer?
The process of repeatedly running a set of computer instructions until some condition is specifed a) condition b) sequential condition c) global d) iteration
What is the difference between arrays and pointers?
Wt are the Buses in C Language
Differentiate between full, complete & perfect binary trees.
What is infinite loop?
What is calloc in c?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
Why we use conio h in c?
Why do we use header files in c?