Linked list C++ application is organized into three files.They are _____, ______ and _____.

Skill/Topic: Linked List
A) header file , source code file , application file
Explanation: The first file is the header file that contains the definition of the NODE structure and the LinkedList class definition. The second file is a source code file containing the implementation of member functions of the LinkedList class. The last file is the application file that contains code that creates and uses the LinkedList class

Showing Answers 1 - 4 of 4 Answers

samiksc

  • Jan 23rd, 2006
 

The answer is actually a linked list app CAN BE organized into a header file, source file and main application file. It can be organized in different ways also like declaration, definition can be combined into one source file linked with the main file. All functionality can be implemented in one source file. We also may have different header files for node class and the list class, separate source files implementing these classes and a main application file which uses these classes.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions