摘要:
1 #include <stdio.h> 2 #include <stdlib.h> 3 #define Max 100 4 5 int *p; 6 int *tos; 7 int *bos; 8 9 /*添加一个数据放到堆栈对顶端*/ 10 void push(int i) 11 { 12 if (p > bos) 13 { 14 printf("堆栈以满\n"); 15 return; 16 阅读全文
摘要:
Mysql的启动与停止 方式一:计算机--右键管理--服务 方式二:通过管理员身份运行cmd net start服务名(启动服务) net stop 服务名(停止服务) Mysql服务的登录和退出 方式一:通过mysql自带的客户端 只限root用户 方式二:通过windows自带的客户端 在cmd 阅读全文