#include struct position { int x; int y; int z; }; struct box { int itemnum; char color[25]; struct position p; int height; int width; int depth; }; int main() { struct box b = {3, "red", {1, 2, 3}, 3, 2, 5}; printf("Item Num: %d\nColor: %s\nPosition: (%d,%d,%d)\nHeight: %d\nWidth: %d\nDepth: %d\n", b.itemnum, b.color, b.p.x, b.p.y, b.p.z, b.height, b.width, b.depth); return 0; }