| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 582 人关注过本帖
标题:关于C中语法的问题!
只看楼主 加入收藏
kljun8888
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2005-3-22
收藏
 问题点数:0 回复次数:0 
关于C中语法的问题!
关于数据结构中栈的应用  用C编译后  下面一句有问题   
Status visit(SElemType * e)
望能指教!
原程序如下:

#include<stdio.h>
#include<malloc.h>
#include<conio.h>

typedef int SElemType;

#include "stack.h"

Status Visit(SElemType * e)
{
  printf(" %d  ", *e);
}

void conversion()
{
pSqStack S;
SElemType e;

int n;
InitStack(&S);
printf("Input a number to convert to OCT:\n");
scanf("%d",&n);

if(n<0)
   {
     printf("\nThe number must be over 0.");
     return;
   }
if(!n) Push(S,0);

while(n){
   Push(S,n%8);
   n=n/8;
}

printf("the result is:        ");
while(!StackEmpty(*S)){
   Pop(S,&e);
   printf("%d",e);
}
}

main()
{
  printf("\n\n\n\n");
  conversion();
  getch();
  printf("\n\nRight");
}
搜索更多相关主题的帖子: 语法 
2005-03-22 15:35
快速回复:关于C中语法的问题!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015350 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved