1070. How much RAM would be given to us?
Given the structure:
Struct mydata
{
char name[20];
short DOB;
struct mydata * next; };
We would be given: 20 + 2 + 4 = 26 (Contiguous) Bytes of RAM