Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- ////////////////////////////
- class Ct
- {
- public:
- int key;
- int inf;
- private:
- Ct *pNext;
- int foo()
- {
- key = inf + 5;
- }
- };
- ////////////////////////////////////////////////////
- int main() //
- {
- Ct ct;
- ct.key = 57987;
- }
- /*
- #include <stdio.h>
- int narr[7] = { 0 , 1 , 2 };
- char sz[123] = "Paramount_",
- sz2[23] = "SONY Pictures";
- void strcpy(char *psz2, const char *psz1);
- ////////////////////////////////////////////////////
- int main() //
- {
- strcpy(sz2, sz);
- printf("sz2 = %s\n", sz2);
- }
- /////////////////////////////////////////////////////
- void strcpy(char *psz2, const char *psz1) //
- {
- int i = 0;
- while(psz1[++i] );
- for(int j = 0; j < i; j++)
- {
- psz2[j] = psz1[j];
- }
- psz2[i] = 0;
- }
- */
- /*
- #include <stdio.h>
- int narr[7] = { 0 , 1 , 2 };
- char sz[123] = {"Paramount_"};
- int _strlen(const char *jhgjkhgkhjhgkjhgkjhgkjhkjhgjhgjhgkhg);
- ////////////////////////////////////////////////////
- int main() //
- {
- int nRes = _strlen(sz);
- printf("nRes = %d\n", nRes);
- }
- /////////////////////////////////////////////////////
- int _strlen(const char *p) //
- {
- int i = 0;
- while(p[++i] );
- return i;
- }
- */
- /*
- #include <stdio.h>
- int narr[7] = { 0 , 1 , 2 };
- char sz[123] = {"Paramount"};
- int _strlen(const char *jhgjkhgkhjhgkjhgkjhgkjhkjhgjhgjhgkhg);
- ////////////////////////////////////////////////////
- int main() //
- {
- int nRes = _strlen(sz);
- printf("nRes = %d\n", nRes);
- }
- /////////////////////////////////////////////////////
- int _strlen(const char *p) //
- {
- int nSymb = 0;
- for(int i = 0; p[i] != 0; i++)
- {
- nSymb ++;
- }
- return nSymb;
- }
- */
- /*
- #include <stdio.h>
- int narr[7] = { 0 , 1 , 2 };
- char sz[123] = { 84, 'D', 'K'};
- int _strlen(char *p);
- ////////////////////////////////////////////////////
- int main() //
- {
- printf(sz);
- _strlen(sz);
- }
- /////////////////////////////////////////////////////
- int _strlen(char *p) //
- {
- }
- */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement