'??' is getting converted into '^' in Visual C++. Why is it happening and what is the way out?
- by Varun Mahajan
'??' gets converted into '^' if I compile mn VC++ program and run it
e.g.
sprintf( ch, "??")
prints out
^
But if I run the same code in Turbo C/C++, there is no such problem. Why is it happening on VC++ on Windows?