Thread
:
Debug Assertion failed. help?
View Single Post
•
•
Join Date: Jul 2008
Posts: 338
Reputation:
Solved Threads: 66
cikara21
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.
Help with Code Tags
C++ Syntax
(
Toggle Plain Text
)
char
ch =
'a'
;
assert
(
ch !=
'a'
)
// assertion failure..
//expression is false..
char ch = 'a'; assert(ch != 'a') // assertion failure.. //expression is false..
cikara21
View Public Profile
Find all posts by cikara21