Answered You can hire a professional tutor to get the answer.
What is wrong with this?
What is wrong with this? It is supposed to countdown from 10
#include<stdio.h>
int main() {
int Number[10], i, x, y = 10;
for(i = 0; i < 10; i++)
{
x = y-i;
Number[i] = x;
printf("Count down from ten: %dn", Number);
}
return (0);
}