C program 问题求助

来源:百度知道 编辑:UC知道 时间:2024/05/14 03:42:42
求助各位高手帮帮小弟这个功课,感谢感谢.
Write a C program which defines and calls the following two functions to demonstrate its use. The prototypes and descriptions are given below.

int square_c(int);

^^^ Will compute the square of the argument and return its value

int lookup_c(char);

^^^ Will check to see whether the argument character is a
alphabet [ uppercase or lower case] and return 0 if so.
The function will return 1 if the argument character is not
a alphabet character.

Define the above functions and use them in your C program.
能够帮我把这个程序写出来吗?????感谢感谢

看来是计算机专业英语啊.
翻译:
编写一个C语言程序,并且定义和调用两个函数供其使用.
他的定义类型和描述方法如下所示
int square_c(int);
计算数的平方并且返回其数值.
int lookup_c(char);
检查此类数是否为字母(大写还是小写)是的话返回0..
假如不是字母的话,则函数返回1.
定义以上的函数并且在C语言中使用它们.