Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- ////////////////////////////////////////////
- class T
- {
- // public:
- friend void foo(T *p);
- int n1;
- int n2;
- } t3, t4;
- ////////////////////////////////////////////
- int main()
- {
- T t1, t2;
- foo(&t2);
- }
- ////////////////////////////////////////////
- void foo(T *p)
- {
- printf("p->n1 = %d\n", p->n1);
- printf("p->n2 = %d\n", p->n2);
- }
- //void foo(T *p);
- /*
- #include <iostream>
- using namespace std;
- /////////////////////////////////////////////////
- int main()
- {
- string s1 = "SONY Pictures";
- for(int i = 0; i < s1.length(); i++)
- {
- cout << s1[i] << endl;
- }
- }
- */
- /*
- #include <iostream>
- using namespace std;
- /////////////////////////////////////////////////
- int main()
- {
- string s1 = "SONY";
- char sz1[99] = " Pictures";
- s1 = s1 + sz1;
- cout << s1 << endl;
- return 0;
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement