Applying sizeof operator on a dereferenced nullptr

Question | Jan 13, 2017 | hkumar 

enter image description here

Given a struct:

struct S {       
  char array[20];
  // .. more data members ..
};  

what would be the result of following?

std::cout << sizeof ((S*)nullptr)->array;