+ 1
What Are Format Specifiers and what is the importance of it?
we use format specifiers. I want to know what are those and how they work and its significance.
4 odpowiedzi
+ 3
"%s" takes string values
"%c" takes char values
"%d" takes int values
"%lf takes double values
"%f" takes float values
example:
printf("%s",name);
+ 2
If you want to learn more get the basics of C++ down first.
Then learn C
https://www.sololearn.com/discuss/459759/?ref=app
+ 1
The specifers are from C code.
Nothing to do with Java.
0
can i get a simplified ans.