Transcription: Here are the declarations of the two stack objects, string stack and int stack, that are used by this program. Because these stacks are declared at file scope, they are constructed before the execution of the main function begins. The object string stack uses the array implementation of a stack, and the object int stack uses the linked list implementation. Both stack objects have internal linkage.