Skip to content
View Joelfm4's full-sized avatar

Sponsoring

@ThePrimeagen
Block or Report

Block or report Joelfm4

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this userโ€™s behavior. Learn more about reporting abuse.

Report abuse
Joelfm4/README.md



Typing SVG


About me

  • I'm a self-taught developer, and there's nothing quite like figuring out how things work on your own.

  • My journey began when I was still very young, not even in school yet. I started learning how computers worked by reading some books I had in the home library.

  • It wasn't until 2017 that I truly delved into learning the fundamentals of programming. I started coding in Java to create games. Yes, Java for making games - after all, in my mind, if Minecraft is made in Java, then Java should do the trick, right?

Skills

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

struct Joel
{
    char **languages;
    char *name;
    int age;
};

int main()
{
    struct Joel joel;
    joel.languages = malloc(6 * sizeof(char *));
    joel.name = strdup("Joel");
    joel.age = 19;

    const char *language_literals[] = {"Python", "C", "SQL", "JavaScript", "Java", "BASIC"};

    for (int i = 0; i < 6; i++)
    {
        joel.languages[i] = strdup(language_literals[i]);
    }

    printf("Name: %s\n", joel.name);
    printf("Age: %d\n", joel.age);
    printf("Languages:\n");
    for (int i = 0; i < 6; i++)
    {
        printf("  %s\n", joel.languages[i]);
    }

    free(joel.name);
    for (int i = 0; i < 6; i++)
    {
        free(joel.languages[i]);
    }
    free(joel.languages);

    return 0;
}

C Java Python TypeScript JavaScript HTML5 CSS3 MySQL


My Statistics



















Pinned

  1. Ray-Casting Ray-Casting Public

    Python 1

  2. FireBox FireBox Public

    Python 1