fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. printf("%10d|\n", 34);
  5. printf("%-10d|\n", 34);
  6. }
  7.  
Success #stdin #stdout 0s 4316KB
stdin
Standard input is empty
stdout
        34|
34        |