fork(1) download
  1. int main(void)
  2. {
  3. char a = '\xAB';
  4. int a2 = a;
  5. wchar_t b = L'\xAB';
  6. int b2 = b;
  7. return a2 == b2;
  8. }
Success #stdin #stdout 0.02s 2676KB
stdin
Standard input is empty
stdout
Standard output is empty