#include<iostream.h> #include<conio.h> void main ( ) { clrscr ( ) ; float res ; float f1=15.5, f2=2; cout<<res<<endl; res = (int) (f1/f2); cout<<res<<endl; res = f1/f2;
cout<<res; getch ( ); } write and justify output
Answers
Answered by
11
Answer:
I didn't understood your question Pls Can you Elaborate your question
Explanation:
Hope you Understood
Answered by
0
Answer:
Output-7
7
7.75
Explanation:
(int) means that the var is temporary turned in int type.
Similar questions