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