fork download
  1. #include <stdio.h>
  2. int main() {
  3. int i;
  4. for(i = 1; i <= 5; i++) {
  5. if(i % 2 == 0)
  6. printf("*");
  7. else
  8. printf("#");
  9. }
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
#*#*#