A 
		
								
				
				
			
		Andrew Burlak
When I add 'foo' to Watch, it has the value
0x000000009abcdef0
although the program output is correct.
Configuration: Debug, Win32 Console.
-----
#include <stdio.h>
__int64 const foo = 0x123456789ABCDEF0I64;
void main()
{
printf ("foo = 0x%I64x\n", foo);
}
				
			0x000000009abcdef0
although the program output is correct.
Configuration: Debug, Win32 Console.
-----
#include <stdio.h>
__int64 const foo = 0x123456789ABCDEF0I64;
void main()
{
printf ("foo = 0x%I64x\n", foo);
}