Rant: the program is called Reo xc because back in 2021, I made a game in C called "Commander". Here's the story: You are a group of hackers using a " commander " machine to install malware on random people's computers. specifically a computer called a "REO XC 2000" The name of the virus was called (coincidentally) "Delta" Get it?
Rant: (cont'd) you can see me working on it at https://scratch.mit.edu/projects/552444046/ (although the version I showed in that project is an old version) source code: (the latest version, CMD_2050-02 created July 8, 2021 at 5:56 PM) #include <stdio.h> #include <string.h> int main(void) { char *s; s = new char(100); printf( "REO XC 2000 16-BIT SYSTEM COPYRIGHT 1986 REO, INC CONNECTED VIA COMMANDER"); while ( 1 ) { scanf("%s", s); if ( strcasecmp(s, "LIST") == 0 ) { printf("BEAR.XCE JGMS-COMIC.IMG 2 FILES 2478591878983792 BYTES FREE ON DISK\n"); } else { if ( strcasecmp(s, "EXIT") == 0 ) break; printf("%s: SYNTAX ERROR\n", s); if ( strcasecmp(s, "HACK:INSTALL-DELTA") == 0 ) { printf("SUCCESSFULLY INSTALLED\n"); } else { if ( strcasecmp(s, "HACK:RESTART-WITH-DELTA") == 0 ) { printf("RESTARTING...\n"); printf( "YOUR COMPUTER HAS BEEN TRASHED BY DELTA. GET A BETTER COMPUTER"); } } } }}