#include<stdio.h>
int main()
{
char *s[] = { "knowledge","is","power"};
char **p;
p = s;
printf("%s ", ++*p);
printf("%s ", *p++);
printf("%s ", ++*p);
getchar();
return 0;
}
t2 = t1; // calls assignment operator, same as "t2.operator=(t1);"Test t3 = t1; // calls copy constructor, same as "Test t3(t1);"
#include <iostream>using namespace std;int main(){ int test = 0; cout << "First character " << '1' << endl; cout << "Second character " << (test ? 3 : '1') << endl; return 0;}