Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: Infinity88
  • Content: Threads
  • Order by date
  1. Infinity88

    EXE Size goes way up

    NOTE: In no step along the way am I outputting DEBUG info The setup: I created a static library with a single, simple class in it: class xTest { int Test() { return 1; } } I compile the LIB file and all is well. Then I create a Win32 project which imports my xTest.lib. It does a few things...
  2. Infinity88

    Converting a int * to char * doesnt work

    The problem is I have an int array, and I need to convert it to a char array so that I can get one byte at a time from it. This is what I tried: int *i = new int[10]; i[0] = 1; i[1] = 2; i[2] = 3; //etc char *c = (char *) i; after doing this, this is what I would expect: c[0] == 0 c[1] == 0...

Part and Inventory Search

Back
Top