Ver Mensaje Individual
  #3 (permalink)  
Antiguo 21/10/2009, 09:30
redcrow
 
Fecha de Ingreso: octubre-2009
Mensajes: 3
Antigüedad: 14 años, 6 meses
Puntos: 0
Respuesta: Ayuda en c escribiendo en fichero

RESUELTO!!!!!
era invertir el orden de la posicion de las strings jajajajaajj gracias por todo ;)
Antes
Código c:
Ver original
  1. unsigned char aMac[6];
  2.     unsigned char bWlan;
  3.     unsigned char freport;
  4.     char strReport[0x255];
  5.     char strPrefix[0x255];
  6. unsigned long aMac_dword;

Después
Código c:
Ver original
  1. char strPrefix[0x255];
  2.     unsigned char aMac[6];
  3.     unsigned char bWlan;
  4.     unsigned char freport;
  5.     char strReport[0x255];
  6.     unsigned long aMac_dword;