The Lounge 0001 [From the Beginning]

#include <stdio.h>
#include <string.h>
#include <ctype.h>

int main( int argc, char* argv[] ) {
        if (argc <= 1) {
                printf("Feed some words damn it\n");
                printf("EX: \"Fuck ME JERRY\"\n");
                return -127;
        }

        char string[10000];
        strcpy(string,argv[1]);

        printf("<F-INLINE> ");
        for (int i = 0; i < strlen(string); i++) {
                printf("[spoiler]%c[/spoiler] ",string[i]);
        }
        printf("\n");

        return 0;
}
1 Like