+ 2
How do I make the numbers appear on the console in C language?
How do I make the numbers appear on the console in C language? My code https://code.sololearn.com/cfdhRO2Pqefk/?ref=app
3 Answers
+ 5
Use correct format specifier "%c" is for character , if you want to display a integer than us "%d" or use "%f" for float in your case
Here is the fixđ
https://code.sololearn.com/cqCXimbLTUK2/?ref=app
+ 3
Here is the list of all format specifier in C
đ
https://codeforwin.org/2015/05/list-of-all-format-specifiers-in-c-programming.html
+ 1
Thank you very much !