difference between assert and verify.
Answer / Faizan Mansoori
Assert and Verify are both debugging tools in MFC (Microsoft Foundation Classes). Assert is used to check for programming errors and will cause the application to terminate if the condition is false. Verify, on the other hand, checks for runtime conditions but does not terminate the application if the condition is false; it simply writes an error message to the debug output.
| Is This Answer Correct ? | 0 Yes | 0 No |
How do you specify which control is the buddy control?
What is the use of DDV and DDX routines ?
What is mfc in vc++?
What is the use of microsoft visual c++ 2015 redistributable?
What is command routing in VC++
What is the difference between Boxing and Unboxing in C#
#include<stdio.h>int(){int a,*b,**c,***d,****e; a=10;b=&a;c=&b;d=&c;e=&c;printf("a=%d b=%u c=%u d=% e=%u",a,b,c,d,e);printf ("%d%d%d\n",a,a+?*b,**c+***d+,****e);return0;}
Explain some of commonly used methods provided by iunknown.
What is cmutex?
In which Way invoke context-sensitive help inside the editor?
A file a.cpp & B.cpp are complied & linked together in VC++ file a is something like int a =100;, File B is something like extern a; main() { printf("%d",a); }what will be the output.a)100,b)linker error,c)complier error etc etc.
How do I reinstall microsoft visual c++?