What are static and dynamic type checking?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Is python better than c++?

0 Answers  


How can we check whether the contents of two structure variables are same or not?

0 Answers  


Will a C compiler always compile C++ code a) Yes b) No c) Only optimized compilers

0 Answers  


Should the this pointer can be used in the constructor?

0 Answers  


Is vector a class in c++?

0 Answers  






How do you remove an element from a set in c++?

0 Answers  


Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);

2 Answers  


Can I learn c++ without learning c?

0 Answers  


When do we use copy constructors?

0 Answers  


What compiler was used?

6 Answers   Intel,


What is meant by iomanip in c++?

0 Answers  


Which uses less memory? a) struct astruct { int x; float y; int v; }; b) union aunion { int x; float v; }; c) char array[10];

4 Answers   Quark,


Categories