How is data hiding achieved in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is virtual destructors? Why they are used?
which of the following is not an secondary constant a) array b) real c) union
How can we access protected and private members of a class?
this is to swap to strings....but in output the whole strings are swapped leaving first as it is...why it is so #include<iostream.h> int main() { char a[]="ajeet"; char b[]="singh"; long x=*a; long y=*b; cout<<x<<":"<<y; x=x+y; y=x-y; x=x-y; *a=x; *b=y; cout<<x<<":"<<y; cout<<&a<<endl; cout<<&b<<endl; }
How do you flush a buffer in c++?
Will a catch statement catch a derived exception if it is looking for the base class?
How do I tokenize a string in c++?
Write a program using shift_half( ) function to shift the elements of first half array to second half and vice versa.
Define a pdb file.
What is c++ and its uses?
declare an array of structure where the members of the structure are integer variable float variable integer array char variable access all elements of the structure using dot operator and this pointer operator
Is there any difference between int [] a and int a [] in c++?