fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5.  
  6. char tab[50];
  7. char zm ='a';
  8. int i = 0;
  9. for(i = 0; i < 50; ++i )
  10. {
  11. tab[i] = zm++;
  12. if( zm > 'z' )
  13. zm = 'a';
  14. }
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 2288KB
stdin
Standard input is empty
stdout
Standard output is empty