Skip to content

Joelfm4/Joelfm4

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation



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



















About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published