This repository has been archived by the owner on Mar 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
26 additions
and
20,801 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Medical Store | ||
A medical store application written in C with the capacity of | ||
|
||
# Requirements | ||
+ gcc v5+ installed | ||
|
||
# How to Run | ||
+ Change the `medicalstore.h` file | ||
```cpp | ||
// CONFIG | ||
#define NAME "JAPSIMRAN" | ||
#define INSTITUTION "CGC" | ||
#define SUBMITTED_TO "Mr. Amit Verma" | ||
``` | ||
+ Building the program | ||
``` | ||
$ gcc medicalstore.c -o program | ||
``` | ||
|
||
+ Running the program | ||
``` | ||
$ program | ||
``` | ||
|
||
**Note :** If you are on windows os then add `gcc.exe` to the enviroment path variable before compiling the program |
Oops, something went wrong.