#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
void pound(int n);
int main(int argc, char *argv[]) {
int time=5;
char ch='!';
float f=6.0f;
pound(time);
pound(ch);
pound(f);
return 0;
}
void pound(int n)
{while (n-->0)
{
printf("*");}
printf("\n");
}
void pound (int n)
n为形式参数,简称形参;像pound(10)这样的函数调用会把10赋给n;
pound(time)就是把time的值( 5)赋给n。我们程函数调用传递的值为实际参数,简称实参。
void pound(int n)前面的void代表无返回值。
double pound (int n)double表示返回的值为double。