#include <stdio.h> /* for input/output */

main() {
  float floatVariable1, floatVariable2;
  printf("Lab Session 2, Question 2.2\n"); /* Display program header */
  floatVariable1 = 0.1; /* Assign first number */
  floatVariable2 = 0.2; /* Assign second number */
  printf("result: %f+%f=%f\n", 
         floatVariable1, 
         floatVariable2, 
         floatVariable1+floatVariable2); /* Add numbers together and print the result */
}

/* OUTPUT:
Lab Session 2, Question 2.2
result: 0.100000+0.200000=0.300000
 */
