Skip to content

C Standards

Sydney Erickson edited this page Feb 19, 2018 · 13 revisions

Function names should use underscores between the name. Variables should use camel case. Spaces should exist between function call parameters. See the example below. Tabs should be used.

void my_function(int myVar1, int myVar2) {
    return some_math_function(myVar1 + myVar2);
}
Clone this wiki locally