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

📄 msgctl.cc

📁 达内IT培训Unix C++第三天源码 是入门Unix 下C++编程的好东西
💻 CC
字号:
#include <iostream>using namespace std;#include <sys/types.h>#include <sys/ipc.h>#include <sys/msg.h>int main(){	int key;	cout << "input key:";	cin >> hex >> key;	int qid = msgget(key, 0);	cout << "qid=" << qid << endl;	if(qid<0)		cout << "not found!" << endl;	else if(msgctl(qid,IPC_RMID,NULL)<0)		cout << "error!" << endl;	else		cout << "OK!" << endl;}

⌨️ 快捷键说明

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