无法让modf()工作

时间:2011-11-12 19:59:20

标签: c xcode4

无法使modf()正常工作。

在评论之后包含了Xcode编译器错误消息。

#import <Foundation/Foundation.h>
#include <stdio.h>
#include <math.h>

int main (int argc, const char * argv[])
{
    double pi = 3.14;                           // Unused variable
    double integerPart;                         // Unused variable
    double fractionPart;                        // Unused variable
}

// Pass the address of integerPart as an argument
fractionPart = modf(pi, &integerPart);          /* Use of undeclared identifier      'integerPart'; did you mean integer_t? */

// Find the value stored in integer part
printf("integerPart = %.0f, fractionPart = %.2f\n", integerPart, fractionPart);     //   Expected ')'

return 0;

}

1 个答案:

答案 0 :(得分:2)

从主要功能的中间删除'}'。