# include <stdio.h>
# include <stdlib.h>
# include <string.h>
# include <conio.h>
typedef struct{
int a[99];
}number;
const int max = 99;
int main () {
number array;
int j;
int count = 0;
for ( j= 1; j <=max; j++ ){
count = count +1 ;
array.a[j] = count;
}
printf("%d\n",&array.a[10]);
getch ();
}
aim is to just insert 1 into position 1 , 2 in position 2 of array etc and print what digit will be in array 10, can someone help me?