Advertisement
Guest User

Untitled

a guest
Apr 8th, 2020
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.24 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int main(void) {
  5.   char message[] = "How is your break going Mr. Abuan?";
  6.  
  7.   for (int i = 0; i < strlen(message); i++) {
  8.     printf("%c", (char)((int)message[i] + 3));
  9.   }
  10.  
  11.   return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement