Review Note
Last Update: 09/09/2024 04:04 PM
Current Deck: 1Universidad::materia::EDD Codigo
PublishedCurrently Published Content
★ Title
Formatos de printf basicos
☆ Subtitle
char, string, int, float, long, double, y el % en si.
☆ Syntax (inline code)
★ Sample (code block or image)
★ Key point (code block or image)
"%c" /* char */ "%s" /* string */ "%d" /* int */ "%f" /* float */ "%ld" /* long */ "%lf" /* double */ "%%" /* % */
★ Key point notes
%f es para tanto float como double, pues un float se promueve a double al hacer printf, es decir, %f = %lf. Aun asi puede servir diferenciar entre ambos en caso de ser necesario.
✎ Other notes
✎ Markdown
Current Tags:
Pending Suggestions
No pending suggestions for this note.