学习讨论 C/C++ QQ群 - C/C++ / 非技术区
QQ群 29152388
友情UP
帮顶
up
帮up
up 支持!
up jf
...难道有分..?
up up up
希望有得加分,哈哈。
支持,我加了,希望楼主能加我,共同学习哈
加了。
顶上,每天收获一点,支持楼主。
up
顶哇
.
顶。。。。分
顶
不知道技术等级怎么样
相关问答:
fastshow()
{
FILE *fp;
char name[10];
char ch[512];
printf("请输入待显示的文件名\n");
scanf("%s",name);
if((fp=fopen(name,"r"))==NULL)
{
printf ......
#include <string.h>
#include <stdio.h>
void main()
{
int i;
char buf[]="abcde";
strncpy(buf,"abc",3);
for(i=0;i <5;i++)
printf(&q ......
各位大侠,小弟有一个问题请教,如下
这个 #define stack_push 是一个函数,调用是这样的
int len;
stack_t *stack;
const char *curpos;
int seglen;
const char *next_slash;
int i;
......
我现在想将这四个文件从服务器\\10.2.95.88\temp目录下的四个文本文件:1.txt ,2.txt ,3.txt , 4.txt从服务器下载到本地机的C:\temp目录下?
上述的功能我想用纯C应该如何实现?
用ftp协议就可以了
引用 ......