Which of the following is CPP style type-casting?
a. per = total/(float)m
b. per = total/float(m)
c. per = (float)total/m
d. None of these
ANSWER: per = total/float(m)
a. per = total/(float)m
b. per = total/float(m)
c. per = (float)total/m
d. None of these
ANSWER: per = total/float(m)
Post a Comment