fork download
  1.  
  2. #include <stdio.h>
  3.  
  4. int main(void) {
  5. int x;
  6. char format[20];
  7.  
  8. for(x=1;x<=8;x++) {
  9. sprintf(format, "*\n%%%ds", x);
  10. printf(format, " ");
  11. }
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
*
 *
  *
   *
    *
     *
      *
       *