What is a float in c++?
No Answer is Posted For this Question
Be the First to Post Answer
what are the iterator and generic algorithms.
What is ifstream c++?
Where do I find the current c or c++ standard documents?
which of the following is not an secondary constant a) array b) real c) union
Explain about templates of C++.
How do you invoke a base member function from a derived class in which you have not overridden that function?
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?
Give 2 examples of a code optimization?
Why can’t you call invariants() as the first line of your constructor?
What is c++ course?
Explain Memory Allocation in C/C++ ?
What is the use of ::(scope resolution operator)?