#include <stdio.h>
int main(void) {
char username[9] = "decentcarp";
char name[7] = "Eleanor";
char country[14] = "United Kingdom";
char codinglanguages[2][4] = {"C", "Bash"};
int age = 15;
printf("Hi! I'm %s, also known as %s. I am a %d year old from the %s.\n", name, username, age, country);
printf("I am learning %s and I also know a bit of %s.\n", codinglanguages[0], codinglanguages[1]);
printf("Thanks for dropping by! :P");
for (int i = 0; i < 10; i++) {
printf("meow\n");
}
return 0;
}
🏳️⚧️
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.


