ここに私がコンパイルしようとしていたコードがあります
#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)