fork download
  1. main() {
  2. int a = 2, b = 2;
  3. while (a || (a = ++b) < 7)
  4. putchar(--a ? 42 : 10);
  5. }
Success #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
*
**
***
****
*****