function lets you print the specified number of spaces you want in the string
Answers
Answer:
C has printf("%Xd", Y);, which just prints the integer X and makes it take Y spaces on the console window.
C has printf("%Xd", Y);, which just prints the integer X and makes it take Y spaces on the console window.For example:
C has printf("%Xd", Y);, which just prints the integer X and makes it take Y spaces on the console window.For example:printf("%3d", 10);
C has printf("%Xd", Y);, which just prints the integer X and makes it take Y spaces on the console window.For example:printf("%3d", 10);console: " 10"`
C has printf("%Xd", Y);, which just prints the integer X and makes it take Y spaces on the console window.For example:printf("%3d", 10);console: " 10"`printf("%5d", 5);
C has printf("%Xd", Y);, which just prints the integer X and makes it take Y spaces on the console window.For example:printf("%3d", 10);console: " 10"`printf("%5d", 5);console: " 5"