fork download
  1. #include <stdio.h>
  2. int myStrlen(char s[]){
  3. for(int i=0;s[i]!='\0';i++)
  4. return i;}
  5.  
  6. int main(void) {
  7. int i;
  8. char s[100];
  9. scanf("%s",s);
  10. printf("%s\n -> ",s);
  11.  
  12. int l=myStrlen(s);
  13. for(int j=0;j<l;j++){
  14.  
  15. if(s[j]<65){
  16. s[j]=73;
  17. } }
  18. printf("%s\n",s);
  19. return 0;
  20. }
Success #stdin #stdout 0.01s 5276KB
stdin
1NFORMAT1ON
stdout
1NFORMAT1ON
  -> 1NFORMAT1ON