Consider the following segment : int d=4 float f= (1/flaot(d))*5; what will be the value for float variable f?

Consider the following segment : int d=4 float f= (1/flaot(d))*5; what will be the value for float variable f? 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.

Related Questions

Comment on the following 2 C programs.
#include  //Program 1int main(){ int a; int b; int c;}#include  //Program 2int main(){ int a; { int b; } { int c; }}