fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. printf("%-20s %20.2f\n", "test stuff:", 1234.567);
  5. printf("%-20s %20.2f", "looooooooong test:", 1234.567);
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
test stuff:                       1234.57
looooooooong test:                1234.57