Arm/declstruct

From ASMBits

Consider the following struct:

struct {
    char postal_code[7];
    unsigned short area_code;
};

Declare an array of three of these structs starting at location List, initialized to the following:

{ "M5S3G4", 416 }, { "V6T1Z4", 604 }, { "K7L3N6", 613 }

This problem only checks for the declaration. There is no code.

Expected solution length: Around 6 lines.

Sample Input

[No input]

Sample Output

[No output] 

Write your solution here

Upload a source file...