fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4. char str[101];
  5. fgets(str, 100, stdin);
  6. for (int i = 0; str[i] && str[i] != '\n'; i++) printf("%c", str[i] + 1);
  7. }
  8.  
  9. //https://pt.stackoverflow.com/q/478699/101
Success #stdin #stdout 0s 4600KB
stdin
teste
stdout
uftuf