fork download
  1. typedef const wchar_t* LPWCSTR;
  2.  
  3. struct A
  4. {
  5. static const int i = 5;
  6. static const double d;
  7. static const LPWCSTR drive[];
  8. };
  9.  
  10. const double A::d = 5.0;
  11. const LPWCSTR A::drive[] = {L"A:", L"B:", L"C:", L"D:", L"E:", L"F:",
  12. L"G:", L"H:" , L"I:" , L"J:" , L"K:" , L"L:" , L"M:" , L"N:" , L"O:" ,
  13. L"P:" , L"Q:" , L"R:" , L"S:" , L"T:" , L"U:" , L"V:" , L"W:" , L"X:" , L"Y:" , L"Z:" };
  14.  
  15. int main() {}
Success #stdin #stdout 0.01s 2720KB
stdin
Standard input is empty
stdout
Standard output is empty