Hola, estoy aprendiendo a programar y como primer proyecto elegí hacer un juego (Ayudandome de tutoriales y paginas webs), el problema llegó cuando para ver si iba todo bien, compilé el código y me saltó "Error: id returned 1 exit status"
¿Alguien podría ayudarme?
Desde ya, muchas gracias.
· Los códigos deben ir en etiquetas GeSHi
>aquí las reglas del foro
-Engel Lex
¿Alguien podría ayudarme?
Código (c) [Seleccionar]
#include<stdio.h>
#include<windows.h>
#include<conio.h>
void gotoxy(int x, int y){
HANDLE hCon;
hCon = GetStdHandle(STD_OUTPUT_HANDLE);
COORD dwPos;
dwPos.X = x;
dwPos.Y = y;
SetConsoleCursorPosition(hCon, dwPos);
}
int main(){
gotoxy(15,10); printf("*");
int x = 10, y = 10;
bool game_over = false;
while(!game_over){
gotoxy(x,y); printf("*");
if(kbhit()){
char tecla = getch();
if(tecla == 'A') x--;
if(tecla == 'D') x++;
if(tecla == 'W') y--;
if(tecla == 's') y++;
}
}
return 0;
}
Desde ya, muchas gracias.
· Los códigos deben ir en etiquetas GeSHi
>aquí las reglas del foro
-Engel Lex