static keyword

Applies to: cpp, c

static has several meanings in C and C++: static storage duration, internal linkage, or class-level members.

static int count = 0;

See also: scope