9 lines
163 B
C
9 lines
163 B
C
|
#include <stdio.h>
|
||
|
#include <wchar.h>
|
||
|
|
||
|
void main( void )
|
||
|
{
|
||
|
printf( "EOF is %sa valid single-byte character\n",
|
||
|
btowc( EOF ) == WEOF ? "not " : "" );
|
||
|
}
|