Ejemplo n.º 1
0
int main(void) {

	populateArrayOfStructs();
	printStructure();

	return EXIT_SUCCESS;
}
Ejemplo n.º 2
0
int main(int argc, const char * argv[]) {
    // insert code here...

    // populate the array
    populateArrayOfStructs();
    // print them out
    printStructure();
    
    
    return EXIT_SUCCESS;
}