大家帮我看看这段程序的花括号是不是有问题?
这是我用DEC-C++按书上例题编的,但是在编译的时候,说第一个花括号({)有错误,大家来帮我看看吧!这是 C primer plus 一个例题。/*pound.c--定义一个带参数的函数*/
#include <stdio.h>
void pound (int n) /*ANSI风格原型*/
int main (void)
{
int times=5;
char ch='!' /*ASCII码值为33*/
float f=6.0;
pound (times); /*int参数*/
pound (ch); /*char转为int型*/
pound ((int) f); /*指派运算符f强制转换为int型*/
system ("pause");
return 0;
}
void pound (int n) /*ANSI 风格的函数头*/
{ /*说明函数接受一个int参数*/
while (n-- >0)
pirntf("d");
printf("\n");
}