fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char encrypted[] = "NMKHMD";
  5. int i;
  6.  
  7. printf("Decrypted string: ");
  8. for (i = 0; encrypted[i] != '\0'; i++) {
  9. printf("%c", encrypted[i] + 33);
  10. }
  11. printf("\n");
  12.  
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
Decrypted string: online