Here is part of my code. I would like to initialize only the arraylist[0]
as arraylist[0].x = 0
and arraylist[0].y = 0
. I do not need to initialize the rest of the struct array. How can I do it? Thank you.
#include <stdio.h>
struct example {
int x;
int y;
};
struct example arraylist[40];
int main(int argc, char *argv[]){
printf("%d\n %d\n", arraylist[0].x, arraylist[0].y);
return 0;
}