Advertisement

1 - 10 of 1052 containing alltags:("pointers") (0.001 seconds)
I have written a game.  When I quit out of the game, Im left with a NULL POINTER ASSIGNMENT error. I dont use pointers in the game at alll. Any ideas. Game downloadable from http://www.bit.net.au...
Zones: CDate Answered: 03/27/1997 Grade: B Views: 0
When using the quickwatch or watch window to view a pointer variable all that is displayed is the dereferenced value. If the pointer is acting as an array : int *ia = new int[100]; I have found no ...
Zones: Windows MFCDate Answered: 09/15/1997 Grade: C Views: 0
Ignoring the issue that is surely a bad program design.  I need to return a reference to a constant pointer.  The syntax const Obj * & is wrong, it means that the thing pointed to is constant.  I...
Zones: C++Date Answered: 06/02/1998 Grade: A Views: 0
I am writing a program where a number (n) is input from the keyboard.  Then a one dim. array of (n) elements is dynamically allocated.  Each element of the array is initialized to a number less tha...
Zones: C++Date Answered: 06/18/1998 Grade: B Views: 0
The following is a piece of code: typedef      int (*PFUNC)(int); int      func1(int nValue) {       printf("func1() is called with %d.\n", nValue);       return(nValue); } main() {       PFUNC      myfunc;       myfunc = func1;...
Zones: C++Date Answered: 01/28/1999 Grade: A Views: 0
getting an illegal op. in urlmon.dll,when cancelled i get an illegal op.,in kernel32.dll,which then freeze's sys. solid,win98 tells me>OLE32 Extensions for Win32 attempted to use a null data point...
Zones: Windows 98Date Answered: 01/10/2000 Grade: C Views: 0
Is it possible to use pointers to read/search fore a value in an either a row or a collom. I.e. by incrementing a pointer by a value? If it is possible is it then faster than than making a normal...
Zones: PascalDate Answered: 01/10/2000 Grade: B Views: 0
Used app wizard to build a SDI application whose view class is based on the CEditView class. CDocument Class has CString test1; Now i want to find a use FindText of the CEditView class fr...
Zones: Windows MFCDate Answered: 02/27/2000 Grade: A Views: 0
- say I have class P: class P{ public:   RWCString GetName() const {return m_name;} . . . private: RWCString m_name; }; - and a typedef for a pointer to its method: typedef  RWCSt...
Zones: C++Date Answered: 11/20/2001 Grade: A Views: 0
I'm filling a data structure that wants a pointer to a character passed in. The information is coming from several TEdit boxes on my form.   temp_str := EditTagName.Text;   newindex[1].name ...
Zones: Delphi ProgrammingDate Answered: 10/24/2000 Grade: A Views: 0