Posts
 
Reputation
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
~177 People Reached
Favorite Forums

1 Posted Topic

Member Avatar for shomashoma

/*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 …

Member Avatar for rajmitul
0
177

The End.