I have following data table :
And I want to organize it in C data structure ,and accessing by :
Example :
#define TRUE 1
#define FALSE 0
printf("%d",arr["Peter"]["Read"]) ; //1
printf("%d",arr["Jonathan"]["Execute"]) ; //0
or modify it :
arr["Marry"]["Write"] = TRUE ;
Is this impossible in C ?
.//Update I think it's difference from this question because my question about accessing value via 2 key