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


      1 /* Assignment 4 LBS 290 - Fall 1991 - syntax errors */
      2 
      3 #include "stdio.h"
      4 
      5 main () {
      6   char c;
      7   int value;
      8   int i;
      9   float x;
     10 
     11   printf("Hello there and welcome to the program\n");
     12   i = 10;
     13   x = 2.50;
     14   x = x + 1.;
     15   value = 15;
     16 /* This is a comment */
     17   printf("This statement should print out, why doesn't it?\n");
     18 /* And another comment */
     19   printf("This statement does print out, yay!\n");
     20 }