Thread: Need a C++ guru
View Single Post
  #4  
Old 06-30-2009, 07:50 PM
Kobaz
Hill Giant
 
Join Date: Nov 2008
Location: Gold Coast, Oz
Posts: 119
Default

So in the following code snippet:

Code:
int a = -1;

unsigned int b = 3000000000; // 3 billion

if ( a > b) { "true" >> cout } else { "false" >> cout };
what comes out in Visual C++?
Reply With Quote