\c@figure
is the TeX count associated with the LaTeX counter
figure
. It is the count that holds the actual numeric value of the counter. Everytime you define a new counter
two associated commands are defined:
\c@foo
which holds the actual numeric value (0 at the beginning),
\thefoo
which is used to
print the counter value and may be redefined with a suitable definition.
It should
never be necessary to do anything with the internal count
\c@foo
. If the value of the counter needs to be reset or something there are a number of commands like
\setcounter
,
\stepcounter
,
\refstepcounter
, ... if the
representation of the counter should be changed then
\thefoo
should be redefined.
Regards