T
Tagore
What is difference between following 2 statements:
1) printf("%.5s","ABCDEFGHIJKL");
2) printf("%5s","ABCDEFGHIJKL");
basically I want to know that what does "." represent in format
string?.....I am clear about what it would mean if used like %.
5f ...i.e it will print 5 places after decimal...but what does it
represent in string..
1) printf("%.5s","ABCDEFGHIJKL");
2) printf("%5s","ABCDEFGHIJKL");
basically I want to know that what does "." represent in format
string?.....I am clear about what it would mean if used like %.
5f ...i.e it will print 5 places after decimal...but what does it
represent in string..