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