fork(3) download
  1. #include <stdio.h>
  2. #include <ctype.h>
  3.  
  4. int main(void) {
  5. char c[] = "How the heck do I do this";
  6. char d[100];
  7. sprintf(d, "%*s", 4, c+13);
  8. printf("%s", d);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
do I do this