int :: printf(char* format); enum fruit { apple, pear, shallot }; enum basket { abc = 15, def }; enum basket thing; enum fruit stuff; int :: main() { int temp; temp = apple + pear + abc; printf("%d\n", temp); return (0); }