View Single Post
Join Date: Jul 2008
Posts: 320
Reputation: cikara21 is an unknown quantity at this point 
Solved Threads: 63
cikara21's Avatar
cikara21 cikara21 is offline Offline
Posting Whiz

Re: Debug Assertion failed. help?

 
0
  #2
Dec 16th, 2008
That code is a dodge, don't u..
Assert : typically used to identify logic error by implementing the expression arg to evaluate to false only..
Ex.
  1. char ch = 'a';
  2. assert(ch != 'a') // assertion failure..
  3. //expression is false..
.:-cikara21-:.
Reply With Quote