SyntaxFix
Write A Post
Hire A Developer
Questions
printf allows formatting with width specifiers. For example,
printf
printf( "%-30s %s\n", "Starting initialization...", "Ok." );
You would use a negative width specifier to indicate left-justification because the default is to use right-justification.