fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. char buchstabe = 'A';
  6. int schluessel;
  7.  
  8. scanf("%c", &buchstabe);
  9. scanf("%d", &schluessel);
  10.  
  11. buchstabe = buchstabe + schluessel;
  12.  
  13. printf ("!Buchstabe!: %c", buchstabe);
  14.  
  15. return 0;
  16.  
  17. }
  18.  
Success #stdin #stdout 0s 2116KB
stdin
Z 15
stdout
!Buchstabe!: i