Skip to content

Instantly share code, notes, and snippets.

View ShahFaisalIslam's full-sized avatar
💭
Alhamdulillah

ShahFaisalIslam

💭
Alhamdulillah
View GitHub Profile
@ShahFaisalIslam
ShahFaisalIslam / match.c
Last active October 21, 2019 04:57 — forked from ianmackinnon/match.c
C Regex multiple matches and groups example
# gcc -Wall -o match match.c && ./match
#
#include <stdio.h>
#include <string.h>
#include <regex.h>
#include <stdlib.h>