fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int test = 99;
  5. printf("%*d%\n", 4, test);
  6. test = 1;
  7. printf("%*d%\n", 4, test);
  8. test = 100;
  9. printf("%*d%\n", 4, test);
  10. // your code goes here
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 5276KB
stdin
Standard input is empty
stdout
  99%
   1%
 100%