Hola!:
Bueno, resulta que me he bajao el C++ Builder command line tools(freecpmmandlinetools.exe), y no sé como funciona. En el readme pone lo siguiente:
Installing and running the Command Line Tools
-----------------------------------------------
1. Run freecommandlinetools.exe; choose the
drive and folder into which you want to
install the free C++Builder 5 command line
tool development system.
2. From the bin directory of your installation:
a. Add "c:BorlandBcc55"
to the existing path
b. Create a bcc32.cfg file which will set
the compiler options for the Include
and Lib paths (-I and -L switches to
compiler) by adding these lines:
-I"c:BorlandBcc55include"
-L"c:BorlandBcc55lib"
c. Create an ilink32.cfg file which will set
the linker option for the Lib path by
adding this line:
-L"c:BorlandBcc55lib"
Pero no entiendo lo que dice.....
Resulta que ya tengo el Dev-C++, pero no me debe funcionar bien, porque intento hacer un sencillo programa (mostrar una serie de datos que el usuario introduce), y no funciona. Para que se vea que escribo el código bien:
#include <stdio.h>
void main (void)
{
char sexo;
int edad;
float altura;
printf("Sexo[(H)ombre o (M)ujer]: ");
scanf("%c",&sexo);
printf("Edad: ");
scanf("%d",&edad);
printf("Altura: ");
scanf("%f",&altura);
printf("Tu sexo es: %c",sexo);
printf("Tu edad es: %d",edad);
printf("Tu altura es: %f",altura);
}
Agradecería sobre todo que me resolvieran la primera duda, muchas gracias.