In my previous blog I very briefly touched on the new C runtime library added to Whidbey. Take a look at the following simple code: int main(int argc, char* argv[]) { char t[10]; ... if (2==argc) strcpy(t,argv[1]); ... return 0; } As you can see there
Read More...