1#include <stdio.h>2 3typedef int Dollars;4 5int main() {6 Dollars cash = 99;7 printf("break here: %d\n", cash);8 return 0;9}10