1.

What is the difference between The difference between C++ deep copy and shallow copy

2.

delete the LinkList node which node's data is < n

3.

The different way of Ipc

pipe and socket

4.

socket program

5.

int *p

6.

shixian my Strstr(not allowed to use the standard library)

7.

void  PutsString(char str[100])

{

  for(int i = 0; i < sizeof(str); i++)

  {

    printf("%c",str[i]);

  }

}

what is the wrong ?

8.

swap(int *p, int *q)

{

  int *t = null;

  *t = *p;

  *p = *q;

  *q = *t;

}

what is the wrong ?

posted on 2025-03-05 22:07  RainbowSea26  阅读(24)  评论(0)    收藏  举报