▲ 0 r/C_Programming
Anyone like to create the most useless things in C for fun? Here I made this “encryption” program that corrupts your text.
#include <stdio.h>
#include <string.h>
int main() {
char data[300];
printf("Enter text to encrypt\n");
fgets(data, 300, stdin);
for (int i = 0; i < strlen(data); i++){
data[i] <<= 3;
}
printf("%s\n", data);
printf("HAR HAR HAR YOU FELL FOR THIS SCAM AND I CORRUPTED YOUR TEXT😈😈😈 YOU WILL NEVER GET IT BACK😂🫵");
}
//yes i am new to c
u/IdiotWithReditAccess — 5 days ago