Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int n = 9;
- ///////////////////////////////////////////////////////////////////
- class Ctt
- {
- public:
- int t1;
- int t2;
- int sum();
- };
- ////////////////////////////////////////////////////////////////////////
- int main() //
- {
- Ctt tt;
- tt.t1 = 10;
- tt.t2 = 33;
- printf("tt.sum = %d\n", tt.sum() );
- }
- ////////////////////////////////////////////////////////////
- int Ctt::sum() //
- {
- return t1 + t2;
- }
- /*
- #include <stdio.h>
- int n = 9;
- ///////////////////////////////////////////////////////////////////
- struct lkjdfg
- {
- int t;
- int t2;
- char szName[100];
- };
- void foo(lkjdfg *);
- ////////////////////////////////////////////////////////////////////////
- int main() //
- {
- lkjdfg arr[30];
- arr[0].t2 = 1234567;
- foo(arr);
- return 0;
- }
- //////////////////////////////////////////////////////////////////////////
- void foo(lkjdfg *p)
- {
- printf("arr[1].t = %d\n", p->t );
- printf("arr[1].t2 = %d\n", p->t2);
- }
- */
- // ( )
- // ( )
- // ( )
- // ( )
- // ) )
- // ( ( /\
- // (_) / \ /\
- // ________[_]________ /\/ \/ \
- // /\ /\ ______ \ / /\/\ /\/\
- // / \ //_\ \ /\ \ /\/\/ \/ \
- // /\ / /\/\ //___\ \__/ \ \/
- // / \ /\/ \//_____\ \ |[]| \
- // /\/\/\/ //_______\ \|__| \
- // / \ /XXXXXXXXXX\ \
- // \ /_I_II I__I_\__________________\
- // I_I| I__I_____[]_|_[]_____I
- // I_II I__I_____[]_|_[]_____I
- // I II__I I XXXXXXX I
- // E-mail: dllbridge@gmail.com
- /*
- #include <stdio.h>
- int n = 9;
- ///////////////////////////////////////////////////////////////////
- struct lkjdfg
- {
- int t;
- float f;
- int t2;
- char szName[100];
- };
- void foo(lkjdfg *);
- ////////////////////////////////////////////////////////////////////////
- int main() //
- {
- lkjdfg arr[30];
- lkjdfg tt;
- tt.f = 3.14;
- arr[1].t2 = 1234567;
- tt.t = 5;
- foo(&tt);
- return 0;
- }
- //////////////////////////////////////////////////////////////////////////
- void foo(lkjdfg *p)
- {
- printf("arr[1].t = %d\n", p->t );
- printf("arr[1].t2 = %d\n", p->t2);
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement