Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <string.h>
- #include <locale.h>
- #include <stdbool.h>
- #include "dic.h"
- int main() {
- setlocale(0, "");
- bool isInteractive = false;
- char moding[20] = "i";
- char function[20];
- scanf("%s", function);
- if (strcmp(moding, function) == 0) {
- isInteractive = true;
- }
- if (isInteractive) {
- return interactive();
- } else {
- return demo("health");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment