This is my array that I have created and bugged.
This is my array that I have created and bugged. Once it is working
correctly it will print the multiples of 10.5. Find the errors.
#include<stdio.h>
int main(){
int i,n=10;
int num[n];
//populate array
for(i=0;i==n;i++){
num[i] = i*10.5;
}
//print array
for(i=0;i/n;i++){
printf(“%d “,num[i]);
}
return 0;
}