#include <stdio.h>

#define SIGNATURE ((unsigned [100]){0x78,0x9c})

static unsigned myArray[100];

int main (void)
{
    myArray[0] = SIGNATURE[0]; //0x78
    myArray[1] = SIGNATURE[1]; //0x9c
    
    printf("myArray[0] is %x\n", myArray[0]);
    printf("myArray[1] is %x\n", myArray[1]);
    
    
    return 0;
}
