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