Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.65K
1 Posted Topic
/*NFA --> DFA conversion program */ #include <stdio.h> #include <string.h> #include<conio.h> #define STATES 25 #define SYMBOLS 20 int N_symbols; /* number of input symbols */ int NFA_states; /* number of NFA states */ char *NFAtab[STATES][SYMBOLS]; int DFA_states; /* number of DFA states */ int DFAtab[STATES][SYMBOLS]; /* Print state-transition table. State …
The End.
rajmitul