fork download
  1. #include <stdio.h>
  2.  
  3. void func(){
  4. printf("#\n");
  5. printf("##\n");
  6. printf("###\n");
  7. printf("####\n");
  8. }
  9.  
  10. int main(void) {
  11. func();
  12. return 0;
  13. }
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
#
##
###
####