Abraxas/CCS  Home  Table of Contents

Module - 15.html

ABRAXAS SOFTWARE - CodeCheck CCS Test-Suite

CCS -C Test Suite for Module - 15.cpp

// 15) Use const proactively.

void f15( int x );

// bad 15

void f15( const int y );

// ok 15




Function Name: f15()

void f15( const int z ) {
    // ...
}

Abraxas/CCS  Home  Table of Contents

ABRAXAS SOFTWARE - CodeCheck CCS Test-Suite CCS