0
#include<stdio.h>
int main(){
 register int i = 0;
 for(i=0;i < 10; i++){
   printf("\n i : %d  \n",i);
 }
 return 0;
}

我正在尝试在循环计数器中使用寄存器的示例程序。

尝试编译程序时出现以下错误,

register.c:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<' token

如何修复此编译错误。

4

2 回答 2

2

试试#include <stdio.h> 你需要#。

于 2013-06-06T14:42:42.187 回答
0

Everything is fine but you could put a space at

#include <stdio.h>

Hope that works or theres something wrong with compiler: maybe

于 2013-06-06T15:23:39.743 回答