#include stdio.h
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:域名与空间、虚拟空间、营销软件、网站建设、荥经网站维护、网站推广。
#include malloc.h
#include string.h
#define N 5
typedef struct node
{
char number[10];
int data;
struct node *next;
}node;
node * create()
{
node *p,*s,*h; char number[10];
int j=1,x;
p=s=h=(node*)malloc(sizeof(node));
h-next=NULL;
printf("please input the data to create the list,end with -1 or %d numbers\n",N);
while(x!=-1j=N)
{
printf("input name:");
scanf("%s",number);
printf("input age:");
scanf("%d",x);
s=(node*)malloc(sizeof(node));
s-data=x;
strcpy(s-number,number);
if(h-next==NULL)
h-next=s;
else
p-next=s;
p=s;
j++;
}
p-next=NULL;
return h;
}
int main()
{
node *p;
p=create() ;
return 0;
}
1、createlist不是库函数,一般是数据结构中实现新建一个链表的自定义函数。因此没有什么用法好说的,关键是看自己怎么定义。
2、例程:
NODE *creatlist(int a[])
{ NODE *h,*p,*q;int i;
h=(NODE *)malloc(sizeof(NODE));
h-next=NULL;
for(i=0;iN;i++)
{q=(NODE *)malloc(sizeof(NODE));
q-data=a[i];
q-next=NULL;
if(h-next==NULL) h-next=p=q;
else {p-next=q;p=q;} }
return h;
}
你说的如果是自定义函数。就先写出来,比如
#includestdio.h
void create()
{
//这里写函数代码
}
int main()
{
create();//在主函数里进行调用
}
1、CreateFile 是一个多功能的函数,可打开或创建以下对象,并返回可访问的句柄:控制台,通信资源,目录(只读打开),磁盘驱动器,文件,邮槽,管道。
2、例程:
#include windows.h
int main()
{
HANDLE hf = CreateFile(TEXT("C:\\testa.bin"), GENERIC_WRITE, 0,
0, CREATE_ALWAYS, 0, 0);
DWORD written;
WriteFile(hf, "\x0f\xff\xff\xff\xff\xff", 6, written, 0);
CloseHandle(hf);
hf = CreateFile(TEXT("c:\\testb.bin"), GENERIC_WRITE, 0,
0, OPEN_ALWAYS, 0, 0);
SetFilePointer(hf, 0, 0, FILE_END);
WriteFile(hf, "\x0f\xff\xff\xff\xff\xff", 6, written, 0);
CloseHandle(hf);
return 0;
}