Consider the following segment : int d=4 float f= (1/flaot(d))*5; what will be the value for float variable f?
A
1.25
B
0.1
C
5
Correct Answer: 1.25
Various format variable are: %c = char single character %d = int signed integer %f = float or double signed decimal. %s = array of char sequence of characters. Etc.