#include /* ------------------------------------------------------------------- Structure definition Note: You MUST define the structure BEFORE you can define/declare any (parameter) variable of this structure !!! ------------------------------------------------------------------- */ struct BankAccount { int accNum; double balance; }; void print( struct BankAccount x ) { printf("x.accNum = %d x.balance = %f\n", x.accNum, x.balance); }