用C语言顺序栈实现十进制和二进制的转换
#include<stdio.h>#include<stdlib.h>#include<malloc.h> #define M 100typedef int datatype;typedef stru
用C语言顺序栈实现十进制和二进制的转换