这是我试图编译的代码
#include <stdio.h>
int main(void)
{
int n;
printf("Enter the value for the nuber to be tested\n");
scanf("%d", &n);
if(n <=10 && >= 1)
printf("n is between 1 to 10\n");
return 0;
}
因此,当我编译它时,它会在该行显示错误 if(n <=10 && >= 1)