// An example declaring and printing variables // of types int, double and char // and the kinds of errors you might make // for COMP1511/1911 24T3 // Written by: z9801583 // Date: 11/09/2024 #include int main(void) { int sides; int result = -99; int value = 1.5; printf("A square has %d sides\n", sides); printf("The result is %d and the value is %d\n", result); return 0; }