Abraxas/ECS C++ Home  Table of Contents 

Module - 126.html

ABRAXAS SOFTWARE - CodeCheck ECS C++ Test-Suite ECS C++.

ECS C++-C Test Suite for Module - 126.cpp

/*

126. Use C++ streams instead of stdio functions for type safety.

*/
#include 
#include   // don't use



Function Name: main()

main() {

// don't use stdio.h

printf( "hello\n" );

// good

cout << "hello\n";
}

Abraxas/ECS C++ Home  Table of Contents

ABRAXAS SOFTWARE - CodeCheck ECS C++ Test-Suite ECS C++