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