Prepare for your Next Interview
|
Welcome to the Geeks Talk forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact contact us. |
This is a discussion on Knowledge about Program ID in Cobol program within the MainFrame forums, part of the Software Development category; What happens during compile time and run time with the program ID that is used in cobol programs. That is I want to know what happens with the program id ...
|
|||||||
|
|||
|
Knowledge about Program ID in Cobol program
What happens during compile time and run time with the program ID that is used in cobol programs. That is I want to know what happens with the program id written in cobol programs. Any idea would help me get a deep knowledge in this aspect.
|
| Sponsored Links |
|
|||
|
Re: Knowledge about Program ID in Cobol program
Program-ID is the name that will be given to the object during compilation. The program Id is used during compile time to create separate load. But even I want to know the interesting fact of what would happen with program id during run time.
|
|
|||
|
Re: Knowledge about Program ID in Cobol program
Identification Division:
This is the first division and the program is identified here. Paragraph PROGRAM-ID followed by user-defined name is mandatory. All other paragraphs are optional and used for documentation. The length of user-defined name for IBM COBOL is EIGHT. IDENTIFICATION DIVISION. PROGRAM-ID. PROGRAM NAME. AUTHOR. COMMENT ENTRY. INSTALLATION. COMMENT ENTRY. DATE-WRITTEN. COMMENT ENTRY. DATE-COMPILED. COMMENT ENTRY. SECURITY. COMMENT ENTRY. |
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Segmentation Fault in C program | RyanJames | C and C++ | 3 | 01-28-2008 12:53 AM |
| Achieve Scalability in Program | RyanJames | C and C++ | 3 | 12-15-2006 02:08 PM |
| Database access using C program | fred | C and C++ | 1 | 07-13-2006 10:52 PM |