1.

Which of the following is correct form of type-casting in C++?

A. per=total/(float)m
B. per=(float) total/m
C. per=total/float(m)
D. per=float(total/m)
Answer» D. per=float(total/m)


Discussion

No Comment Found