| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| AppClass.c | 2023-02-20 | 2.3 kB | |
| main.c | 2023-02-20 | 1.8 kB | |
| README.txt | 2023-02-20 | 591 Bytes | |
| AppClass.h | 2023-02-20 | 1.8 kB | |
| AppClass.sm | 2023-02-20 | 1.8 kB | |
| Makefile | 2023-02-20 | 2.9 kB | |
| Totals: 6 Items | 11.1 kB | 0 | |
C Example 1
This state machine "recognizes" the string 0*1* (which includes the
empty string).
+ Building
----------
NOTE: Smc.jar must be built and installed.
Unix & Windows (MinGW):
$ make checkstring
+ Executing
-----------
Unix & Windows:
$ checkstring <string>
Try several different strings, such as:
$ checkstring "" -> acceptable
$ checkstring 000 -> acceptable
$ checkstring 00011 -> acceptable
$ checkstring 111 -> acceptable
$ checkstring 000111100 -> unacceptable
$ checkstring 00011a1b10c0 -> unacceptable