Programa para Llevar de TB a GB,MB,KB...

Iniciado por -MicrO-, 26 Junio 2011, 19:03 PM

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

тαптяα

Me alegro, que lo hayas entendido todo.

Cualquier otra cosa, preguntala.  ;D

BlackZeroX

#11
.
Revisa la definicion de TeraByte ( 1TB = 1024 GB =  1048576 MB = 1073741824 kb = 1099511627776 bytes)

http://www.google.com/search?client=safari&rls=en&q=1+terbyte+a+bytes&ie=UTF-8&oe=UTF-8



#include <stdio.h>
int main() {
    // multiplicacion 1024 de manera binaria ( Dezplazamiento de bits ).
    int bytes  = 1;
    fprintf(stdout,"El Resultado en GB es= %d  \n",bytes<<30);
    fprintf(stdout,"El Resultado en MB es= %d  \n",bytes<<20);
    fprintf(stdout,"El Resultado en KB es= %d \n",bytes<<10);
    fprintf(stdout,"El Resultado en Bytes es= %d \n",bytes);
    getchar();
    return 0;
}



temibles Lunas!¡.
The Dark Shadow is my passion.

тαптяα

Cita de: BlackZeroX▓▓▒▒░░ en 26 Junio 2011, 23:20 PM
.
Revisa la definicion de TeraByte ( 1TB = 1024 GB =  1048576 MB = 1073741824 kb = 1099511627776 bytes)

http://www.google.com/search?client=safari&rls=en&q=1+terbyte+a+bytes&ie=UTF-8&oe=UTF-8



#include <stdio.h>
int main() {
    // multiplicacion 1024 de manera binaria ( Dezplazamiento de bits ).
    int bytes  = 1;
    fprintf(stdout,"El Resultado en GB es= %d  \n",bytes<<30);
    fprintf(stdout,"El Resultado en MB es= %d  \n",bytes<<20);
    fprintf(stdout,"El Resultado en KB es= %d \n",bytes<<10);
    fprintf(stdout,"El Resultado en Bytes es= %d \n",bytes);
    getchar();
    return 0;
}



temibles Lunas!¡.

muy bien campeón :)

y cuanto es 1024 * 1024 jajajajaja

leogtz

Cuando la función main está como:

main()

está implicito que devuelve un int, no es void, para que sea void se tiene que especificar de manera explícita:

void main().

Los nuevos estándares creo que cuando se omite la sentencia return ellos automáticamente devuelven un 0.

Saludos.
Código (perl) [Seleccionar]

(( 1 / 0 )) &> /dev/null || {
echo -e "stderrrrrrrrrrrrrrrrrrr";
}

http://leonardogtzr.wordpress.com/
leogutierrezramirez@gmail.com

BlackZeroX

#14
.
que idiota, no se en que demonios estaba pensando...



#include <stdio.h>
int main() {
   float GBytes = 1024.0f
   fprintf( stdout , "El Resultado en TB es= %.2f  \n" , GBytes/1024 );
   fprintf( stdout , "El Resultado en MB es= %.2f  \n" , GBytes*1024);
   fprintf( stdout , "El Resultado en KB es= %.2f  \n" , GBytes*1048576);
   fprintf( stdout , "El Resultado en Bytes es= %.2f \n" , GBytes*1073741824);
   getchar(  );
   return 0;
}



Dulces Lunas!¡.
.
The Dark Shadow is my passion.

тαптяα

Cita de: Leo Gutiérrez. en 27 Junio 2011, 00:40 AM
Cuando la función main está como:

main()

está implicito que devuelve un int, no es void, para que sea void se tiene que especificar de manera explícita:

void main().

Los nuevos estándares creo que cuando se omite la sentencia return ellos automáticamente devuelven un 0.

Saludos.
Pues nose donde leí que era al revés..pero bueno creo que tienes razón.

Queta

Citar5.1.2.2.1 Program startup
1 The function called at program startup is named main. The implementation declares no
prototype for this function. It shall be defined with a return type of int and with no
parameters:
int main(void) { /* ... */ }
or with two parameters (referred to here as argc and argv, though any names may be
used, as they are local to the function in which they are declared):
int main(int argc, char *argv[]) { /* ... */ }
or equivalent;9) or in some other implementation-defined manner.
2 If they are declared, the parameters to the main function shall obey the following
constraints:
— The value of argc shall be nonnegative.
— argv[argc] shall be a null pointer.
— If the value of argc is greater than zero, the array members argv[0] through
argv[argc-1] inclusive shall contain pointers to strings, which are given
implementation-defined values by the host environment prior to program startup. The
intent is to supply to the program information determined prior to program startup
from elsewhere in the hosted environment. If the host environment is not capable of
supplying strings with letters in both uppercase and lowercase, the implementation
shall ensure that the strings are received in lowercase.
— If the value of argc is greater than zero, the string pointed to by argv[0]
represents the program name; argv[0][0] shall be the null character if the
program name is not available from the host environment. If the value of argc is
greater than one, the strings pointed to by argv[1] through argv[argc-1]
represent the program parameters.
— The parameters argc and argv and the strings pointed to by the argv array shall
be modifiable by the program, and retain their last-stored values between program
startup and program termination.

9) Thus, int can be replaced by a typedef name defined as int, or the type of argv can be written as
char ** argv, and so on.
"Intenta no volverte un hombre de éxito, sino volverte un hombre de valor." Albert Einstein.