CALL ComputeMISExpenses(MISData)
CALL ComputeAccountingExpenses(AccountingData)
CALL PrintExpenseSummary(MarketingData,MISData,AccouningData)
Basic
Basic
' Compute expense data each of the routines acceses the
' global data structure ExpenseData ComputeMarketingExpenses
' should be called first because it initlializes Expenses
' PrintExpenseSummary should be called last because it uses
' data calculatal by the other routines
CALL ComputeMarketingExpenses
CALL ComputeMISExpenses
CALL ComputeAccountingExpenees
CALk PrintExpenseSummary
13.2
13.2.1
" "
InitMarketingData(MarketingData)
InitMISData(MISData)
InitAccountingData(AccountingData);