Added Makefile, bumped version, removed getch()

master
= 2016-08-18 00:05:56 +02:00
parent 12e68a3bb6
commit 07ec88e18a
3 changed files with 7 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/RandEsam

4
Makefile Normal file
View File

@ -0,0 +1,4 @@
build:
gcc -o RandEsam RandEsam.c
run:
./RandEsam

View File

@ -1,9 +1,10 @@
#define ver "0.6.1"
#define ver "0.6.2"
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
#define N 100
#define fs 1
@ -95,6 +96,5 @@ int main(){
free(esame);
printf("\n\n\n\n\n\n\nv%s",ver);
getch();
return 0;
}