What is vcruntime?
No Answer is Posted For this Question
Be the First to Post Answer
I have to DLL one is COM dll and another is normal DLL. How I can identify which dll is normal DLL and which DLL is from COM DLL. please give me some clear picture on these
What is cwinthread class? Explain its advantages.
how to declare and populate an array of checkBoxes
What is a copy constructor? What is the need for it?
Is visual c++ a compiler?
Name the most commonly used wizards?
What is splitter window in vc++?
what is the difference between the codes written in the document class and view class
How to declare more than one variable on a single line?
What is vcredist_x86 exe?
How do you define a function in vc++?
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.