C/C++错误集锦(DEV-C++):[Warning] extra tokens at end of #include directive [enabled by default]

原文链接:http://www.juzicode.com/cpp-error-devc-warning-extra-tokens-at-end-of-include-directive-enabled-by-default

错误提示:

 编译时提示[Warning] extra tokens at end of #include directive [enabled by default]

#include "stdio.h" #include "math.h"
int main(void)
{
  double ret; 
  ret = tan(2); 
  printf("tan(2)=%f",ret); 
  return 0;
}

 

错误原因:

1、#include预处理语句前不能有非空字符

  

解决方法:

1、第2条#include语句,另起一行,保证预处理语句前不含有非空字符。

#include "stdio.h" 
#include "math.h"
int main(void)
{
  double ret; 
  ret = tan(2); 
  printf("tan(2)=%f",ret); 
  return 0;
}

如果本文还没有完全解决你的疑惑,你也可以在微信公众号“桔子code”后台给我留言,欢迎一起探讨交流。

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注