3

这是代码

main()
{
    short sMax = SHRT_MAX;
    int iMax = INT_MAX;
    long lMax = LONG_MAX;

    // Printing min and max values for types short, int and long using constants
    printf("range of short int: %i ... %i\n", SHRT_MIN, SHRT_MAX);
    printf("range of int: %d ... %d\n", INT_MIN, INT_MAX);
    printf("range of long int: %ld ... %ld\n", LONG_MIN, LONG_MAX);

    // Computing and printing the same values using knowledge of binary numbers
    // Short
    int computed_sMax = computeShort() / 2;
    printf("\n Computed max and min short values: \n %i ... ", computed_sMax);

    int computed_sMin = (computeShort()/2 + 1) * -1;
    printf("%i\n", computed_sMin);

    //Int
    int computed_iMax = computeInt() / 2;
    printf("\n Computed min and max int values: \n %i ... ", computed_iMax);

    int computed_iMin = computeInt() / 2;
    printf("%i", computed_iMin);



    return 0;
}

int computeShort()
{
    int myShort = 0;
    int min = 0;
    int max = 16;

    for (int i = min; i < max; i++)
    {
        myShort = myShort + pow(2, i);
    }

    return myShort;
}

int computeInt()
{
    int myInt = 0;
    int min = 0;
    int max = 32;

    for (int i = min; i < max; i++)
    {
        myInt = myInt + pow(2, i);
    }

    return myInt;
}
4

2 回答 2

6

您必须在使用函数之前声明它们:

int computeShort(); // declaration here

int main()
{
    computeShort();
}

int computeShort()
{
    // definition here
}

另一种但不太可取的方法是在 main 之前定义函数,因为定义也用作声明:

int computeShort()
{
    // return 4;
}

int main()
{
    computeShort();
}

但通常更好的做法是为使用的函数单独声明,因为这样您就没有义务在实现中保持一定的顺序。

于 2013-03-06T10:52:55.603 回答
3

您必须在调用函数之前声明它们。即使对于标准库的某些部分也是如此。

例如, printf()通过以下方式声明:

#include <stdio.h>

对于您自己的功能,可以:

  • 将定义移到上面 main();定义也用作声明。
  • 在调用之前添加原型,通常在之前main()

    int computeShort();

另外,请注意

  • 应声明局部函数static
  • 不接受任何参数的函数应该有一个参数列表(void),而不是其他的()东西。
于 2013-03-06T10:51:58.047 回答