I l@ve RuBoard Previous Section Next Section

29.11 Answers to Chapter Questions

Answer 29-1: The compiler didn't see our default line because we misspelled "default" as "defualt." This was not flagged as an error because "defualt" is a valid goto label. That's why when we compile the program we get the following warning:

def.c(26): warning: defualt unused in function main 

This means we defined a label for a goto, but never used it.

    I l@ve RuBoard Previous Section Next Section