#include <stdio.h> int main() { #if _PLATFORM_ == _PLATFORM_TRU64 printf("Hello _PLATFORM_TRU64! "); #endif #if _PLATFORM_ == _PLATFORM_WIN32 printf("Hello _PLATFORM_WIN32! "); #endif return 0; } /* Hello _PLATFORM_TRU64! Hello _PLATFORM_WIN32! Press any key to continue */