char array [code] class student { char name[4]; int rno; public: student() { r...
copy constructoris the below code is valid class test { int a; public: test() { a=o; cout<<a; } t...
copy constructorAm writing a program using copy constructor the code goes like this class test { int a,b; ...
accessing address of char variablei have declared 3 vars in my program int a=10; float b=123.4; char c='a'; am trying to ...
array and pointersWhat is the difference between a char name[5]="abc"; char *name="abc"; is there any differ...
This user does not accept Private Messages