IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Please help me in getting the Output for the PL/1 Code


IBM Mainframe Forums -> PL/I & Assembler
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
debasis.routray

New User


Joined: 19 Aug 2011
Posts: 3
Location: India

PostPosted: Wed Jan 25, 2012 6:36 pm
Reply with quote

Hello All,

Can anyone please tell me the output of the PL/1 code below ?
Also, please let me know how you got the output.

Code:
DCL A AREA(8000);
    DCL 1 STR1 BASED(P),
             2 STR1_LGTH BIN FIXED(31),
             2 STR_CHAR CHAR(ALLOC_LGTH REFER(STR1_LGTH));
    DCL ALLOC_LGTH BIN FIXED(31);
    DCL I FIXED BIN(31);
    DCL P PTR;
    ALLOC_LGTH = 100;
    DO I = 1 TO 10;
      ALLOC STR1 IN(A);
    END;
    PUT SKIP LIST(CSTG(A));


Thanks in advance.
Back to top
View user's profile Send private message
prino

Senior Member


Joined: 07 Feb 2009
Posts: 1306
Location: Vilnius, Lithuania

PostPosted: Wed Jan 25, 2012 6:54 pm
Reply with quote

8016 - RTFM!
Back to top
View user's profile Send private message
debasis.routray

New User


Joined: 19 Aug 2011
Posts: 3
Location: India

PostPosted: Thu Jan 26, 2012 2:00 am
Reply with quote

Can anyone please help me in getting the output of the above mentioned code ?

Thanks in advance.
Back to top
View user's profile Send private message
prino

Senior Member


Joined: 07 Feb 2009
Posts: 1306
Location: Vilnius, Lithuania

PostPosted: Thu Jan 26, 2012 2:27 am
Reply with quote

Sorry, STG returns 8016, CSTG returns 1056, but you would have known either if you had RTFM!
Back to top
View user's profile Send private message
Akatsukami

Global Moderator


Joined: 03 Oct 2009
Posts: 1788
Location: Bloomington, IL

PostPosted: Thu Jan 26, 2012 3:09 am
Reply with quote

debasis.routray wrote:
Can anyone please tell me the output of the PL/1 code below ?
Also, please let me know how you got the output.

Are we to suppose, then, that you have no access to a z/OS system that you ask this instead of compiling and running the program yourself?
Back to top
View user's profile Send private message
debasis.routray

New User


Joined: 19 Aug 2011
Posts: 3
Location: India

PostPosted: Thu Jan 26, 2012 10:30 am
Reply with quote

Thank you Prino.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> PL/I & Assembler

 


Similar Topics
Topic Forum Replies
No new posts run rexx code with jcl CLIST & REXX 15
No new posts Compile rexx code with jcl CLIST & REXX 6
No new posts Sortjoin and Search for a String and ... DFSORT/ICETOOL 1
No new posts Joinkeys - 5 output files DFSORT/ICETOOL 7
No new posts REXX code to expand copybook in a cob... CLIST & REXX 2
Search our Forums:

Back to Top