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 (213B)


      1 #include <stdio.h>
      2 #include <string.h>
      3 int main() {
      4     char line[1000];
      5     void process();
      6     strcpy(line,"Hi there and welcome to LBS290");
      7     process(line);
      8     strcpy(line,"I love C");
      9     process(line);
     10 }