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