+ 3

%3.2 what actually it's mean?

10th Sep 2020, 2:31 PM
Sadaf Shaikh
Sadaf Shaikh - avatar
3 ответов
+ 2
%3.2f => outputs atleast 3 Integer digits and value rounded upto 2 decimal points.. Ex: N = 4.78899 printf("%3.2f",N); Output is : 4.79 (2 empty spaces before 4) To see it accurately, check this printf("%03.2", N); outputs : 004.79 Edit: See this https://www.sololearn.com/learn/C/2914/
10th Sep 2020, 2:40 PM
Jayakrishna 🇮🇳
+ 2
You are telling there are 2empty space before 4. Then why we are adding empty space?
10th Sep 2020, 3:55 PM
Sadaf Shaikh
Sadaf Shaikh - avatar
+ 1
For example, to make table form, it helps Like Name id. Marks Aaa 1. 90 ... In this kind of farmating, that helps..
10th Sep 2020, 4:27 PM
Jayakrishna 🇮🇳