Electrical and Computer Engineering
9 of 17
UAH
CPE 112
One More struct Example
•#include <iostream>
•using namespace std;
•
•struct player
•{
• int assists;
• int points;
• int        rebounds;
•}; 
•
•int triple_double (struct player);
•
•int main()
•{
• player shaq, the_admiral, kobe, jason;
• int shaq_td, jason_td;
•