Abraxas/ECS C++ Home Table of Contents
ABRAXAS SOFTWARE - CodeCheck ECS C++ Test-Suite ECS C++.ECS C++-C Test Suite for Module - 40.cpp
/*
40. Use one-line comments to explain implementation details.
*/
// comment about the function
Function Name: f()
f() {
int i;
// comment about the next aggregate statement
{
i = i++;
}
}
Function Name: ff()
ff() {
int i;
{
i = i++;
}
}
Abraxas/ECS C++ Home Table of Contents
ABRAXAS SOFTWARE - CodeCheck ECS C++ Test-Suite ECS C++