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