I am getting the error 'stray '\160' in program ' for my program.
#include <stdio.h>
void main() {
int x[500], n, my_numb, j, found;
do {
printf("Enter n < 10\n");
scanf("%d",&n);
} while ((n < 1) || (n > 10));
}
Unable to post entire program, but part of my program is as above.