Package Index Table of Contents
/*
126. Use C++ streams instead of stdio functions for type safety.
*/
#include
#include// don't use
Function Name: main()
main() {// don't use stdio.hprintf( "hello\n" );// goodcout << "hello\n";
}
Package Index Table of Contents