fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. #include <string.h>
  5.  
  6. int main(void) {
  7. char test[4] = "abc";
  8. char filler[25];
  9. memset(filler, '0', sizeof(filler));
  10. printf("%.*s%s", 19-strlen(test),filler , test);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 9416KB
stdin
Standard input is empty
stdout
0000000000000000abc