Skip to content
View Jakkret's full-sized avatar
🏫
focusing on school... for now
🏫
focusing on school... for now
  • Poland
  • 19:31 (UTC +01:00)

Block or report Jakkret

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
Jakkret/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, "Jakkret");
    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