Hola ya pude solucionarlo, al parecer faltaban instalar algunas caracteristicas de windows para el iis y el .net framework
muchas gracias a todos
muchas gracias a todos

Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúYou are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
intente algo como esto pero no me funciono (pasar letra por letra):Código: "C"
int f = 0;
while(*Ptr_variable != '\0') //fin de línea
{
variable_auxiliar[f] = *Ptr_variable;
f++;
Ptr_variable++;
}
En que estaré fallando, que otro método tengo de copiar los valores del char* a char[].
char *Ptr_variable;
Ptr_variable = "esto es un string cabron";
printf("%s", Ptr_variable);
int f = 0;
char variable_auxiliar[50];
while(*Ptr_variable != '\0') //fin de línea
{
variable_auxiliar[f] = *Ptr_variable;
f++;
Ptr_variable++;
}
variable_auxiliar[f] = '\0';
printf("%s", variable_auxiliar);
char variable_auxiliar[256]
char * Ptr_variable; //con un valor asignado por ejemplo: Hola Como Estas?
strcpy(variable_auxiliar, Ptr_variable)
strupr(variable)
int f = 0;
while(*Ptr_variable != '\0') //fin de línea
{
variable_auxiliar[f] = *Ptr_variable;
f++;
Ptr_variable++;
}


C:\Documents and Settings\Administrador\Mis documentos\Descargas\test>SET /A PAS
S=1375+1
C:\Documents and Settings\Administrador\Mis documentos\Descargas\test>UNRAR E -I
NUL -P1376 "C:\Archivo.rar" "c:\hola33"