Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- int main()
- {
- char pass[20];
- printf("Enter Password: ");
- scanf("%s", pass);
- int l = strlen(pass);
- for(int i=0;i<l;i++) {
- pass[i]=pass[i]+2;
- }
- printf("Changed Password is: %s.", pass);
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment