C/C++
cprog998.txt
Associated article: The Next Great Migration: From C++ to Standard C++
Tags: C/C++
Published source code examples accompanying the column by Al Stevens in which he takes a look the recently finalized Standard C++.
C Programming Column
by Al Stevens
Example 1:
(a)
#include <windef.h>
BOOL B = TRUE;
bool b = B; // warning
(b)
#include <windef.h>
void foo(BOOL b) { }
void foo(bool b) { }
void bar()
{
foo(TRUE);
foo(true);
}
...


