C/C++ Style Guide

About

This style guide applies to C and C++.

Definitions

```c

    double *foo = NULL;

```

Libraries

Pointers

```c

    int *x, *y, z, q;

```

```c

    int *x;

```

Return to Categories