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...
http://www.experts-exchange.com/Programming/Languages/C/Q_10006414.html
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 ...
http://www.experts-exchange.com/Programming/System/Windows__Programming/MFC/Q_10023624.htm...
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...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10055536.html
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...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10058650.html
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;...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10122576.html
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...
http://www.experts-exchange.com/OS/Microsoft_Operating_Systems/Windows/98/Q_10211947.html
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...
http://www.experts-exchange.com/Programming/Languages/Pascal/Q_10255568.html
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...
http://www.experts-exchange.com/Programming/System/Windows__Programming/MFC/Q_10301595.htm...
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...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_11117505.html
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 ...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_11635978.html