‎2007 Sep 04 7:10 PM
what is top include? what it does & can be done with it? & significance?
‎2007 Sep 04 7:14 PM
Hi,
The TOP Include is like a portion of the code where we make all the data declarations..
Everything declared here will be globally available in all the includes of the main program..
Thanks and Best Regards,
Vikas Bittera.
‎2007 Sep 04 7:14 PM
Hi,
The TOP Include is like a portion of the code where we make all the data declarations..
Everything declared here will be globally available in all the includes of the main program..
Thanks and Best Regards,
Vikas Bittera.
‎2007 Sep 04 8:24 PM
Top include is a include program of type "I"
For readability purpose you can declare all the variables in the top include and call the include in the executable program.
Include program can be used to seperate different parts of your code like data declaration, routines, etc....