What is the array and initializing arrays in c++?
No Answer is Posted For this Question
Be the First to Post Answer
When should overload new operator on a global basis or a class basis?
Is it possible to use a new for the reallocation of pointers ?
Explain how functions are classified in C++ ?
What is stream and its types in c++?
What is the output of this prog. ? struct A { A(){ cout << \"A\"; } }; struct B { B(){ cout << \"B\"; } }; struct C { C(){ cout << \"C\"; } }; struct D { D(){ cout << \"D\"; } }; struct E : D { E(){ cout << \"E\"; } }; struct F : A, B { C c; D d; E e; F() : B(), A(),d(),c(),e() { cout << \"F\"; } };
Are c and c++ similar?
what is importance of data sturture in a programming language?
22 Answers L&T, TCS, Wipro,
Write a program to encrypt the data in a way that inputs a four digit number and replace each digit by (the sum of that digit plus 7) modulus 10. Then sweep the first digit with the third, second digit with the fourth and print the encrypted number.
Should I learn c or c++ first?
How do I run c++?
Which programming language's unsatisfactory performance led to the discovery of c++?
Explain what are the sizes and ranges of the basic c++ data types?