Can static member variables be private?
No Answer is Posted For this Question
Be the First to Post Answer
What are c++ variables?
What is the use of static functions?
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 is the use of void main() in C++ language?
What is the benefit of learning c++?
What are abstract data types in c++?
What do you mean by a template?
What is the Diffrence between a "assignment operator" and a "copy constructor"?
What is #include cstdlib in c++?
A mXn matrix is given and rows and column are sorted as shown below.Write a function that search a desired entered no in the matrix .with minimum complexity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
can anybody please tell me how to write a program in c++,without using semicolon(;)
What do you mean by persistent and non persistent objects?