Convertedor ASCII-HEXA
Aki vai mais um programa supremo codeado pela Cyber Nine.


<++> Superprogs/convert.c
// Convertedor Hexa-Ascii
// by CYBER NINE HACKER VIRTUAL CORPORATION
//
// Como usar???
// [root@localhost myprgs]# ./a.out
// Ascii : A
// Hexa : 41
// [root@localhost myprgs]# ./a.out -h
// Hexa : 41
// Ascii : A
// [root@localhost myprgs]#
//
//

main(int argc, char *argv[]) {
int d;

d = getopt(argc,argv,"h");
if(d == 'h') {
printf("Hexa : ");

// Essa funcao foi rippada do programa elito HEX2ASCII by hak.
scanf ("%x",&d);

printf("Ascii : %c\n",d);
} else {
printf("Ascii : ");
d = getchar();
printf("Hexa : %x\n",d);
}

}

//EoF
<-->

 

Hosted by www.Geocities.ws

Copyright © Cyber Nine/Crack's S.A todos direitos reservados
Hosted by www.Geocities.ws

Hosted by www.Geocities.ws

Hosted by www.Geocities.ws

1