首页
新闻
小组
威客
人才
下载
博客
代码贴
在线编程
论坛
注册
|
登录
代码贴
→
娃娃菜的代码贴
→
C语言
[C语言]求助,代码在2转8进制时,出现溢出栈的状况,肿么回事?
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<malloc.h>
#include<math.h>
#define STACK_INIT_SIZE 100
#define STACKINCREMENT 10
struct SqStack{
int *base;
int *top;
int stacksize;
};
......................
阅读全部
| 2015年4月21日 22:23
1
娃娃菜
全部(1)
C语言(1)