Browse Source

Konfiguration von delay function

remotes/origin/fdai7402-main-patch-42180
fdai7225 2 years ago
parent
commit
a219801978
  1. 7
      src/Umgebung.c

7
src/Umgebung.c

@ -5,17 +5,21 @@
#include<stdlib.h>
#include<time.h>
#include<stdbool.h>
#include<ConditionalMacros.h>
#define N 40
void Umgebung(char str[N][N]);
void delay(int ms);
int main(){
char g;
while((g=getchar())!=EOF){
char str[N][N];
Umgebung(str);
}
re 0;
}
@ -26,6 +30,7 @@ void delay(int ms){
}
void Umgebung(char str[N][N]){
system("cls");
printf("\n");
printf("\tHerzlichen Willkommen zum Spiel \n");

Loading…
Cancel
Save