Un error que seguramente no encuentro :/
Publicado por Dendi (5 intervenciones) el 04/04/2017 00:39:39
Hola, recién estoy empezando con el lenguaje C, y quisiera saber que estoy haciendo mal y porque no me ejecuta este codigo.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <conio.h>
#include <stdio.h>
void fun (int ,int );
int main()
{
fun (1,1);
fun (25,25);
fun (80,25);
fun (80,1);
fun (25,1);
}
void fun (int x, int y)
{
gotoxy (x,y);
printf("%d %d\n" , x , y);
}
Valora esta pregunta
0