What would be printed by the code fragment given below? Please could someone explain the significance of the 4 in the formatting string %4.2f.
float x;
x = 137.9397;
printf ("%4.2f" , x);
Thanks.
______________________________________________________________________________
Also just a quick side question, is the following definition valid?
int **p;
If it is could you please explain why? If not why?
I REALLY appreciate all this help.
Thankyou.
float x;
x = 137.9397;
printf ("%4.2f" , x);
Thanks.
______________________________________________________________________________
Also just a quick side question, is the following definition valid?
int **p;
If it is could you please explain why? If not why?
I REALLY appreciate all this help.
Thankyou.