Difference between revisions of "Team K - OOP344 - 20132"

From CDOT Wiki
Jump to: navigation, search
(Blocks)
(Variable Naming)
Line 45: Line 45:
 
=== Variable Naming ===
 
=== Variable Naming ===
 
<syntaxhighlight lang="cpp">
 
<syntaxhighlight lang="cpp">
int main()
+
int main(int argc, char* argv[], char* envp[])
 
{
 
{
  int a = 1;
+
    int a = 1;
  char* bookNames;
+
    char* bookNames;
  char bookId
+
    char bookId;
  return 0;
+
    return 0;
 
}
 
}
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 22:24, 19 August 2013


OOP344 | Weekly Schedule | Student List | Teams | Project | Student Resources

Repository

Master Status

commit 82ce281deca20a35721992c75a9baa95197de0ef

Author: Amal Khandelwal <akhandelwal@myseneca.ca>

Date: Fri Aug 16 19:48:59 2013 -0400

V1.0

Announcements

Classes most contributed to, by:

  • Amal Khandelwal
    • CButton
    • CCheckMark
    • CCheckList
  • Artem Luzyanin
    • CLabel
    • CLineEdit
    • CValEdit
    • CMenu
  • Elliot Kwan
    • CDialog
    • CText
    • CMenuItem

Programming Style

Indentation

  • 4 spaces for indentation
  • Do not use tab character

Blocks

if(condition)
{
    statement;
}

Variable Naming

int main(int argc, char* argv[], char* envp[])
{
    int a = 1;
    char* bookNames;
    char bookId;
    return 0;
}

Team Members

OOP344 - Team name
First Name Last Name Section Seneca Id & email wiki id IRC nick GITHUB ID Blog URL
Amal Khandelwal A akhandelwal@myseneca.ca Amal Khandelwal HaydeezPluto HaydeezPluto OOP344
Elliot Kwan A ekwan10@myseneca.ca Elliot Kwan ElliotK ElliotKwan ElliotTheGuy
Artem Luzyanin A aluzyanin@myseneca.ca Artem Luzyanin ArtemL ArtemL OOP344

Discussions