Author Topic: GMK CYL CPL (C Programming Language)  (Read 263 times)

ZavaZ86 and 4 Guests are viewing this topic.

Offline balance

  • Thread Starter
  • Posts: 167
GMK CYL CPL (C Programming Language)
« on: Fri, 12 September 2025, 16:49:00 »

_____________________________________________________________________________________________________________________________________________________________________
/*
 * GMK CPL (C Programming Language) - Interest Check
 * Hello Geekhack! Today, I present you a set inspired by my beginning in the coding world. Every programmer starts with a certain language, mine was the C Language.
 * This set is a nod to syntax-highlighted code on a white background.
 * For lovers of clean syntax, logic, and elegance.
 * Discord Server
 * Interest Check Form
 */

#include <stdio.h>
#include <stdbool.h>


#define SET "GMK CPL"
#define MATERIAL "Double-shot ABS"
#define PROFILE "Cherry"
#define MAKER "GMK"

// Color Scheme
const char *colors[] = {
    "PANTONE 656 C (alphas)",
    "RAL 270 20 20 (legends)",
    "GMK TU2 / GMK AE / RAL 360 40 50 / PANTONE 927 C (mods/accents)"
};

// Kit Structure
struct Kit { const char *name; bool available; };
struct Kit kits[] = {
    { "Base Kit", true },
    { "Alt Mod Kit 1", true },
    { "Alt Mod Kit 2", true },
    { "Numpad", true },
    { "Spacebars", true }
};

// Kits
void print_kits() {
    puts("Kits:");
    for (int i = 0; i < 5; i++)
        printf(" - %s: %s\n", kits.name, kits.available ? "Yes" : "No");
}











//Board Renders
void print_renders(const char *a, const char *b, const char *c) {
    printf("Renders:\n  1. %s\n  2. %s\n  3. %s\n", a, b, c);
}



















// Interest Check Form
void interest_check() {
    puts("\n Interest Check Form");
    puts("Let me know if this set caught your eye! Vote in the IC form and spread the word.");
    puts("Your feedback helps shape the final product.");
}

// Discord Link
void join_discord() {
    puts("\n Join the Community");
    puts("Stay updated, ask questions, and share your thoughts on Discord:");
    puts("Discord Server");
}

// Main Output
int main() {
    printf("\n--- Interest Check: %s ---\n\n", SET);
    print_kits();
    puts("\nIf you're interested, leave a comment below!");
    puts("Feedback and suggestions are appreciated.\n");
    print_renders("TGR Alice", "TGR Jane", "Sunsetter");
    interest_check();
    join_discord();
    return 0;
}

Offline balance

  • Thread Starter
  • Posts: 167
Re: GMK CYL CPL (C Programming Language)
« Reply #1 on: Fri, 12 September 2025, 16:49:40 »
reserved