NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Compiler Error C2101

'&' on constant

The address-of operator ( & ) must have an l-value as operand. The following sample generates C2101:

void main() {
   char test;
   test = &'a';  // C2101, remove the & to resolve
}