fork download
  1. #include <stdio.h>
  2.  
  3. void printWhitespace(const unsigned int times) {
  4. printf("%*s", times, " ");
  5. }
  6.  
  7. int main(void) {
  8. printf("123456789012345\n");
  9. printWhitespace(10);
  10. printf("|\n");
  11. }
  12.  
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
123456789012345
          |