Skip to content

Instantly share code, notes, and snippets.

View avsingh999's full-sized avatar
😉
0/0

Avkaran Singh avsingh999

😉
0/0
View GitHub Profile
@avsingh999
avsingh999 / shift_reduce_parser.cpp
Last active March 10, 2019 09:54
Shift Reduce Parser in cpp
#include<iostream>
#include<string.h>
using namespace std;
struct grammer {
char p[20];
char prod[20];
} g[10];
int main()