learning-cc4e

Solution to https://cc4e.com/. If you copy these you're not right in the head.
git clone https://kaka.farm/~git/learning-cc4e
Log | Files | Refs

solution.c (103B)


      1 static int counter = 0;
      2 
      3 int bump()
      4 {
      5   return(counter++);
      6 }
      7 
      8 void start(value)
      9 {
     10   counter = value;
     11 }