#include <stdio.h>
#define MEM_SIZE 16
typedef struct memory_contents{
unsigned char mem[MEM_SIZE]; /* memory */
} mem;
mem init(char prog[]){
mem chip = {prog};
return chip;
}
int main(int argc, char *argv[]){
char memory[MEM_SIZE] = {0}; /* zero out whole array */
mem chip = init(memory);
printf("%d\n", chip.mem[0]);
return 0;
}
Am I right in thinking that what this code does (specifically, the init function) is try to put the address of the variable 'memory' into the struct's array? (and hence this is why it's printing a non-zero value)
What I'm trying to achieve is to initialise the struct such that the struct's mem array is the prog[] parameter. What's the preferred, or best, way of doing this? I could make the struct's mem a pointer to the first element of an array of size MEM_SIZE, but I feel that might cause problems: if I change the memory array in main later down the line, it'll change the values in chip's array too.