#include<iostream.h> #include<string.h> class CuriousTabString { char x[50]; char y[50]; char z[50]; public: CuriousTabString() { } CuriousTabString(char* xx) { strcpy(x, xx); strcpy(y, xx); } CuriousTabString(char *xx, char *yy = " C++", char *zz = " Programming!") { strcpy(z, xx); strcat(z, yy); strcat(z, zz); } void Display(void) { cout<< z << endl; } }; int main() { CuriousTabString objStr("Learn", " Java"); objStr.Display(); return 0; }
#include<iostream.h> class CuriousTabTeam { int x, y; public: CuriousTabTeam(int xx) { x = ++xx; } void Display() { cout<< --x << " "; } }; int main() { CuriousTabTeam objBT(45); objBT.Display(); int *p = (int*)&objBT; *p = 23; objBT.Display(); return 0; }
#include<iostream.h> class CuriousTab { int x, y; public: CuriousTab(int xx = 10, int yy = 20 ) { x = xx; y = yy; } void Display() { cout<< x << " " << y << endl; } ~CuriousTab() { } }; int main() { CuriousTab objCuriousTab; objCuriousTab.Display(); return 0; }
Comments
There are no comments.Copyright ©CuriousTab. All rights reserved.