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
How to define structures? ·
What is the difference between strcpy() and memcpy() function in c programming?
What does char * * argv mean in c?
How to find a missed value, if you want to store 100 values in a 99 sized array?
What are the types of data structures in c?
What is build process in c?
Explain modulus operator.
in ‘C’ language for Matrix Multiplication fails” Introspect the causes for its failure and write down the possible reasons for its failure.
How do I convert a string to all upper or lower case?
What is static and volatile in c?
What is the use of #define preprocessor in c?
What do you know about the use of bit field?
Why shouldn’t I start variable names with underscores?
Can you please explain the difference between syntax vs logical error?
Is it possible to have a function as a parameter in another function?