fork(2) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. printf("|%10s|", "Hello"); //Will add 10 spaces to the left of Hello
  5. printf("|%-10s|", "Hello"); //Will add 10 spaces to the right of Hello
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
|     Hello||Hello     |