It keeps on asking for integers whether I put 0 or not. I don't know the way to end it. I appreciate it if you do help me. Thanks. I edited the code due to some basic mistakes.
#include <stdio.h>
int main() {
int a=1, integers[100];
while (integers[a] != 0) {
for (integers[a]; integers[100]; ++a) {
printf("Enter the integer: \n");
scanf("%d", & integers[a]);
}
}
return 0;
}