Skip to content

Instantly share code, notes, and snippets.

View misyalsekolah-prog's full-sized avatar

misyalsekolah-prog

  • Joined Sep 24, 2025
View GitHub Profile
@misyalsekolah-prog
misyalsekolah-prog / project2.c
Last active October 15, 2025 04:52
Waiting list system
#include <stdio.h>
#include <string.h>
#define MAX 100
#define MAX_NAME_LENGTH 100
char queue[MAX][MAX_NAME_LENGTH];
int front = -1, rear = -1;
// Fungsi untuk menambahkan pelanggan ke antrian