Autor
|
Tema: Programa para Llevar de TB a GB,MB,KB... (Leído 15,650 veces)
|
тαптяα
Desconectado
Mensajes: 1.151
Sic utere tuo ut alienum non laeda
|
Me alegro, que lo hayas entendido todo. Cualquier otra cosa, preguntala.
|
|
|
En línea
|
|
|
|
BlackZeroX
Wiki
Desconectado
Mensajes: 3.158
I'Love...!¡.
|
. 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 ); return 0; }
temibles Lunas!¡.
|
|
« Última modificación: 26 Junio 2011, 23:27 pm por BlackZeroX▓▓▒▒░░ »
|
En línea
|
The Dark Shadow is my passion.
|
|
|
тαптяα
Desconectado
Mensajes: 1.151
Sic utere tuo ut alienum non laeda
|
muy bien campeón y cuanto es 1024 * 1024 jajajajaja
|
|
|
En línea
|
|
|
|
leogtz
. . .. ... ..... ........ ............. .....................
Colaborador
Desconectado
Mensajes: 3.069
/^$/
|
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.
|
|
|
En línea
|
|
|
|
BlackZeroX
Wiki
Desconectado
Mensajes: 3.158
I'Love...!¡.
|
. 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); return 0; }
Dulces Lunas!¡. .
|
|
« Última modificación: 27 Junio 2011, 01:04 am por BlackZeroX▓▓▒▒░░ »
|
En línea
|
The Dark Shadow is my passion.
|
|
|
тαптяα
Desconectado
Mensajes: 1.151
Sic utere tuo ut alienum non laeda
|
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.
|
|
|
En línea
|
|
|
|
Queta
Desconectado
Mensajes: 267
|
5.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.
|
|
|
En línea
|
"Intenta no volverte un hombre de éxito, sino volverte un hombre de valor." Albert Einstein.
|
|
|
|
Mensajes similares |
|
Asunto |
Iniciado por |
Respuestas |
Vistas |
Último mensaje |
|
|
Spielberg invierte para llevar a la pantalla el caso de Wikileaks
Noticias
|
wolfbcn
|
0
|
1,801
|
3 Marzo 2011, 02:11 am
por wolfbcn
|
|
|
EE UU amplia las citaciones para llevar ante la justicia la filtración de ...
Noticias
|
wolfbcn
|
0
|
1,470
|
10 Junio 2011, 02:28 am
por wolfbcn
|
|
|
Quince aplicaciones imprescindibles para llevar en tu USB
Noticias
|
wolfbcn
|
0
|
3,060
|
17 Mayo 2012, 14:00 pm
por wolfbcn
|
|
|
Slax 7.0, Linux para llevar. A fondo
Noticias
|
wolfbcn
|
0
|
1,991
|
13 Diciembre 2012, 15:06 pm
por wolfbcn
|
|
|
Aplicaciones imprescindibles para llevar en una memoria USB
Noticias
|
wolfbcn
|
0
|
2,866
|
9 Noviembre 2013, 14:18 pm
por wolfbcn
|
|