⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 create_book.cpp

📁 C语言的课程设计。图书管理系统。有一些系统功能不怎么完善
💻 CPP
字号:
#include"stdio.h"
#include"book_struct.h"
#include"iostream.h"
void create_bookmas(bomas &B)//创建单链表
{
	B=(bomas)malloc(sizeof(bookmassage));//创建一个空的头结点
	if(!B)exit (OVERFLOW);
	B->next=NULL;
	B->book_number=0;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -