.NET
xvcpp.asc
Associated article: Cross-Platform Development with Visual C++
Tags: .NET C/C++ Parallel
_CROSS-PLATFORM DEVELOPMENT WITH VISUAL C++_
by Chane Cullers
Figure 1
(a)
file.C, line 100: error: syntax error
(b)
int Number = 26;
unsigned char Letter;
...
Letter = unsigned char (Number);
(c)
Letter = (unsigned char)Number;
Figure 2:
(a)
file.C, line 100: error: WinCalApp::ExitInstance() type ...


