用C语言编写简单通讯录 要求用结构体跟指针 只要能添加 删除 显示联系人就成 再加一个输入名字查找的功能

[复制链接]
查看11 | 回复2 | 2010-9-3 18:29:23 | 显示全部楼层 |阅读模式
不需要太花哨 最好简洁一点 急!!!!!!非常急!!

回复

使用道具 举报

千问 | 2010-9-3 18:29:23 | 显示全部楼层
// test.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include struct stu { char szName[20]; stu* next;};void Find(stu *person, const char *lpszName);int main(int argc, char* argv[]){
stu *person1 = new stu;
stu *person2 = new stu;
stu *person3 =
回复

使用道具 举报

千问 | 2010-9-3 18:29:23 | 显示全部楼层
#include "stdafx.h"#include struct stu { char szName[20]; stu* next;};void Find(stu *person, const char *lpszName);int main(int argc, char* argv[]){
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行