Package Index Table of Contents
/*
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++;}
}
Package Index Table of Contents