Skip to content

Instantly share code, notes, and snippets.

@TheCreatorAMA
TheCreatorAMA / match.c
Last active January 15, 2025 17:10 — forked from ianmackinnon/match.c
C Regex multiple matches and groups example (with explanation)
#include <errno.h>
#include <regex.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/*
* Advent of Code 2024 Day 3 Part 1
*/