Changes

Jump to: navigation, search

A+ Programmers - OOP344 20113

618 bytes added, 22:44, 18 October 2011
no edit summary
* status
 
== Syntax Guidelines ==
 
This is a group of recommendation of coding style pertinent to this group.
Feel free to add or modify where you see fit.
 
'''Comments:'''
 
* Comments should explain the purpose behind statements not logic.
* Explain each parameters role to the function.
* State the return of the function and the result from it.
 
'''Example:'''
 
<pre>
/*
* Pourpose: A short description of the function.
*
* Parameters: int x -> Describe what use the function makes of the variable.
*
* Return: int, bool etc... What the value means in external context of function.
*/
 
void foo(int x) {
return x;
}
</pre>
== meetings ==
1
edit

Navigation menu