Poniendo a prueba los tipos de variables en c

Iniciado por Nucleorion, 2 Agosto 2016, 12:25 PM

0 Miembros y 1 Visitante están viendo este tema.

Nucleorion

Hola,

Estoy haciendo un programa para comprobar el tamaño y signo admitido por las variables en c y su funcionalidad en cada version de windows y arquitectura. Todo empezo porque cuando intento usar por ejemplo double se queda calculando indefinidamente.

Este es el programa:
Código (cpp) [Seleccionar]

#include <stdio.h>
#include <stdlib.h>

void main(){
char tipo_char=1, tipo_char_max=1;                                                  //          -128 a 128
unsigned char tipo_unsigned_char=1, tipo_unsigned_char_max=1;                       //             0 a 256
short int tipo_short_int=1, tipo_short_int_max=1;                                   //        -32768 a 32767
unsigned short int tipo_unsigned_short_int=1, tipo_unsigned_short_int_max=1;        //             0 a 65 535
long int tipo_long_int=1, tipo_long_int_max=1;                                      //-2 147 483 648 a 2 147 483 647
unsigned long int tipo_unsigned_long_int=1, tipo_unsigned_long_int_max=1;           //             0 a 4 294 967 295
int tipo_int=1, tipo_int_max=1;                                                     //-2 147 483 648 a 2 147 483 647
unsigned int tipo_unsigned_int=1, tipo_unsigned_int_max=1;                          //             0 a 4 294 967 295
double tipo_double=1, tipo_double_max=1;                                            //           18 446 744 073 709 551 616
float tipo_float=1, tipo_float_max=1;                                               //          18 446 744 073 709 551 616

while(tipo_char>0){
tipo_char_max=tipo_char+(tipo_char-1);
tipo_char=tipo_char*2;
//printf("La variable char admite como maximo: %i \n\n",tipo_char);
}
printf("La variable char admite numeros entre: %i y %i \n\n",tipo_char,tipo_char_max);

while(tipo_unsigned_char>0){
tipo_unsigned_char_max=tipo_unsigned_char+(tipo_unsigned_char-1);
tipo_unsigned_char=tipo_unsigned_char*2;
}
printf("La variable unsigned char admite numeros entre: %i y %i \n\n",tipo_unsigned_char,tipo_unsigned_char_max);

while(tipo_short_int>0){
tipo_short_int_max=tipo_short_int+(tipo_short_int-1);
tipo_short_int=tipo_short_int*2;
}
printf("La variable short int admite numeros entre: %i y %i \n\n",tipo_short_int,tipo_short_int_max);

while(tipo_unsigned_short_int>0){
tipo_unsigned_short_int_max=tipo_unsigned_short_int+(tipo_unsigned_short_int-1);
tipo_unsigned_short_int=tipo_unsigned_short_int*2;
//printf("La variable admite como maximo: %i \n\n",tipo_unsigned_short_int);
}
printf("La variable unsigned short int admite numeros entre: %i y %i \n\n",tipo_unsigned_short_int,tipo_unsigned_short_int_max);

while(tipo_long_int>0){
tipo_long_int_max=tipo_long_int+(tipo_long_int-1);
tipo_long_int=tipo_long_int*2;
//printf("La variable admite como maximo: %i \n\n",tipo_long_int);
}
printf("La variable long int admite numeros entre: %i y %i \n\n",tipo_long_int,tipo_long_int_max);

while(tipo_unsigned_long_int>0){
tipo_unsigned_long_int_max=tipo_unsigned_long_int+(tipo_unsigned_long_int-1);
tipo_unsigned_long_int=tipo_unsigned_long_int*2;
//printf("La variable admite como maximo: %i \n\n",tipo_unsigned_long_int);
}
printf("La variable unsigned long int admite numeros entre: %u y %u \n\n",tipo_unsigned_long_int,tipo_unsigned_long_int_max);

while(tipo_int>0){
tipo_int_max=tipo_int+(tipo_int-1);
tipo_int=tipo_int*2;
//printf("La variable admite como maximo: %i \n\n",tipo_long_int);
}
printf("La variable int admite numeros entre: %i y %i \n\n",tipo_int,tipo_int_max);

while(tipo_unsigned_int>0){
tipo_unsigned_int_max=tipo_unsigned_int+(tipo_unsigned_int-1);
tipo_unsigned_int=tipo_unsigned_int*2;
//printf("La variable admite como maximo: %i \n\n",tipo_unsigned_int);
}
printf("La variable unsigned int admite numeros entre: %u y %u \n\n",tipo_unsigned_int,tipo_unsigned_int_max);

while(tipo_float>0){
tipo_float_max=tipo_float+(tipo_float-1);
tipo_float=tipo_float*2;
//printf("La variable admite como maximo: %i \n\n",tipo_float);
}
//printf("La variable float admite numeros entre: %4.2f y %4.2f \n\n",tipo_float,tipo_float_max);

while(tipo_double>0){
tipo_double_max=tipo_double+(tipo_double-1);
tipo_double=tipo_double*2;
//printf("La variable admite como maximo: %i \n\n",tipo_double);
}
//tipo_double=18446744073709551616;
//printf("La variable double admite numeros entre: %4.2f y %4.2f \n\n",tipo_double,tipo_double_max);



system("pause");


}



Y este el resultado:
Citar
La variable char admite numeros entre: -128 y 127

La variable unsigned char admite numeros entre: 0 y 255

La variable short int admite numeros entre: -32768 y 32767

La variable unsigned short int admite numeros entre: 0 y 65535

La variable long int admite numeros entre: -2147483648 y 2147483647

La variable unsigned long int admite numeros entre: 0 y 4294967295

La variable int admite numeros entre: -2147483648 y 2147483647

La variable unsigned int admite numeros entre: 0 y 4294967295

_


Y tanto el tipo double como float se queda ahi trabajando pero no termina ni en varios minutos.

El ordenador es un i5, 8GB de RAM. El SO Win7 64bits. El compilador minGW64 gcc.exe. El editor Notepad++.

Que puede fallar para que double y float no me den el resultado esperado?

Nucleorion

Vale ya he visto que tengo mal el formato en los printf. Voy a revisarlo

AlbertoBSD

Donaciones
1Coffee1jV4gB5gaXfHgSHDz9xx9QSECVW

Nucleorion

#3
No, no termina. Nunca sale lo de pulse una tecla para continuar.

Edito el post inicial ya que unsigned long int y unsigned int, fallaban porque ponia %i en vez de %u

En cuanto a los dos ultimos tipos double y float aunque comente el printf se quedan atascados supuestamente calculando y consumiendo el 25% del procesador cuatro nucleos.

Que hago mal para que no termine de multiplicarse por dos. double y float no se resetean como los otros tipos cuando se desbordan?

ivancea96

Cuando un float, double o long double llega al límite, se establece a un valor que se trata como "infinito". Mientras que nos números enteros se manejan directamente como están en la memoria, los float tienen un formato especial.
http://en.cppreference.com/w/c/types/limits

Nucleorion

#5
infinito, que bien!! infinito es mayor que cero!! asi que no acababa nunca XD

Hay alguna manera de saber cuando se ha desbordado un double y un float? Es decir, no quiero usar una constante para ver si se llega al final. Quiero desbordar el tipo detectarlo, e imprimir su valor mayor y menor, igual que hago en los tipos mas pequeños.


ivancea96

Si pones 1.0/0.0, obtedrás el valor infinito. Cuidado de no poner 1/0, ya que estos son enteros, y tu programa tendrá un error de división por cero.

Nucleorion

Funciona lo de dividir por cero para comparar con el infinito!!

Dejando los decimales aparte, que veo que tienen tela. me quedan unas dudas.

int, long, y long int es lo mismo? o tengo algo mal?

AlbertoBSD

Actualmente en la mayoria de los sistemas de 32 bits tienen dicho espacio de almacenamiento, la diferencia radicaba en aequitecturas de de 16 bits donde un int tenia espacio para 16 bits y un long era el doble de esto.

http://stackoverflow.com/questions/900230/difference-between-long-and-int-data-types


Donaciones
1Coffee1jV4gB5gaXfHgSHDz9xx9QSECVW

Nucleorion

Y en mi caso que el sistema es de 64 bits? realmente se puede manejar un bloque de 32 bits?

Que hace, optimizar y guardar en memoria dos de 32 juntos, o que?