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

main.c (282B)


      1 #include <stdio.h>
      2 int main() {
      3   int bump();
      4   void start();
      5   printf("bump() returns %d\n", bump());
      6   printf("bump() returns %d\n", bump());
      7   printf("bump() returns %d\n", bump());
      8   start(42);
      9   printf("bump() returns %d\n", bump());
     10   printf("bump() returns %d\n", bump());
     11 }