Multiple choice The following program results in main() { printf(“%u”, main); } printing of a garbage number an execution error printing of starting address of the function main an infinite loop Reveal answer Fill a bubble to check yourself C Correct answer Explanation In C, the name of a function used in an expression decays to a pointer to that function, which is its starting address.