What is microsoft c++ redistributable?
Answer / Mr.prateek Sachdeva
"Microsoft C++ Redistributable" refers to a set of runtime libraries required by applications written in C++ that are compiled with the Visual Studio compiler. These components ensure compatibility between different versions of MSVC and allow multiple instances of C++ applications to run on a single machine.n
| Is This Answer Correct ? | 0 Yes | 0 No |
Define basic type of variable used for a different condition in C++?
What are manipulators used for?
Describe the advantage of an external iterator.
What is meant by forward referencing and when should it be used?
If a base class declares a function to be virtual, and a derived class does not use the term virtual when overriding that class, is it still virtual when inherited by a third-generation class?
How should runtime errors be handled in c++?
1)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea += sizeof(int); } return 0; } 2)#include <iostream.h> int main() { int *a, *savea, i; savea = a = (int *) malloc(4 * sizeof(int)); for (i=0; i<4; i++) *a++ = 10 * i; for (i=0; i<4; i++) { printf("%d\n", *savea); savea ++; } return 0; } The output of this two programs will be different why?
What are single and multiple inheritances in c++?
What are containers in c++?
What is #include iostream h in c++?
What is the latest version on c++?
Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.