fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int i, n;
  5. n = 3;
  6.  
  7. char c = '#';
  8. for (i = 0; i < n; i++)
  9. {
  10. printf("%c\n", c);
  11. }
  12. }
  13.  
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
#
#
#