Skip to content
View ApplehatDot's full-sized avatar
๐ŸŽ
existing as an apple...
๐ŸŽ
existing as an apple...

Block or report ApplehatDot

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
ApplehatDot/README.md

Hello, welcome to my Github profile ๐Ÿ‘‹๐ŸŽ

// About Me
#include <stdlib.h>
#include <string.h>

typedef struct {
    char nickname[70];
    char PLang[70];
    char pronouns[10];
    char country[30];
    char interests[100];
    char* repositories;
} AboutMe;

void Display_AboutMe(AboutMe person) {
    printf("Nickname: %s\n", person.nickname);
    printf("Programming Languages: %s\n", person.PLang);
    printf("Pronouns: %s\n", person.pronouns);
    printf("Country: %s\n", person.country);
    printf("Interests: %s\n", person.interests);
    printf("Repositories: %s\n", person.repositories);
}

int main(){
    AboutMe me;

    strcpy(me.nickname, "ApplehatDot (ApplehatDoesStuff)");
    strcpy(me.PLang, "C/C++");
    strcpy(me.pronouns, "he/him");
    strcpy(me.country, "Poland");
    strcpy(me.interests, "old hardware and software, programming, using various OS' (...)");
    strcpy(me.repositories, "DVD_GL, SNEK_GL OpenGLHeart, RoseGL, GWM, Win32AboutDialog");

    Display_AboutMe(&me);

    return 0;
}

Pinned Loading

  1. SNEK_GL SNEK_GL Public

    [MEGC #2] SNEK - OpenGL project written in C, that recreates Snake II from Nokia 5110

    C 1

  2. PSBoi PSBoi Public

    [MEGC #5] PSBoi - "The funniest CPU stressing utility"

    C

  3. Win32AboutDialog Win32AboutDialog Public

    Example About Dialog written in C++ (winAPI)

    C++ 1

  4. BatteryMeter BatteryMeter Public

    [UTILS] WinAPI-based battery meter

    C