Do you know what are static and dynamic type checking?
No Answer is Posted For this Question
Be the First to Post Answer
What operator is used to access a struct through a pointer a) >> b) -> c) *
Explain the use of vtable.
How can I learn c++ easily?
What are the three forms of cin.get() and what are their differences?
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's the best free c++ profiler for windows?
What are disadvantages of pointers?
What is the difference in size of this two clasees? Class A { int a; char c; float f; } Class B { float f; char c; int a; }
What are the various situations where a copy constructor is invoked?
simple c++ program for "abcde123ba" convert "ab321edcba" with out using string
List different attributes in C++?
What are friend classes?