C语言应用程序进行数据通信

时间:2022-08-26 18:49:42

I am planning to develop an application (could be in C or Ada!!) to exchange the data between two computers. Please help me out to start this work.

我打算开发一个应用程序(可以是C或Ada !!)来在两台计算机之间交换数据。请帮我开始这项工作。

1 个解决方案

#1


8  

Here's a start if you happen to chose C:

如果您碰巧选择C,这是一个开始:


int main(int argc, char *argv[])
{
    ...
    return 0;
}

Just fill in the "..." part, add new functions etc. as appropriate.

只需填写“...”部分,根据需要添加新功能等。

Or maybe ask a more specific question. ;-/

或者可能会问一个更具体的问题。 ; - /

#1


8  

Here's a start if you happen to chose C:

如果您碰巧选择C,这是一个开始:


int main(int argc, char *argv[])
{
    ...
    return 0;
}

Just fill in the "..." part, add new functions etc. as appropriate.

只需填写“...”部分,根据需要添加新功能等。

Or maybe ask a more specific question. ;-/

或者可能会问一个更具体的问题。 ; - /