Hi, there is some kind of difference in these two statements?
float num = 154.87;
printf("There is : $0.0f",num);
and
float num = 154.87;
printf("There is : $f",num);
float num = 154.87;
printf("There is : $0.0f",num);
and
float num = 154.87;
printf("There is : $f",num);
Comment