fork download
  1. #include <stdio.h>
  2.  
  3. char replace(char ch)
  4. {
  5. if((ch <= 'G') || (ch >= 'M'))
  6. {
  7. ch = ch + 32;
  8. }
  9. printf("%c", ch);
  10.  
  11. return ch;
  12. }
  13.  
  14. int main()
  15. {
  16. char arr[] = {'E', 'L', 'V', 'I', 'S'};
  17.  
  18. for(int i = 0; i < 5; i++)
  19. {
  20. arr[i] = replace(arr[i]);
  21. }
  22.  
  23. return 0;
  24. }
Success #stdin #stdout 0.01s 5280KB
stdin
add $s0, $t2, $s0
stdout
eLvIs