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

Equivalent Cobol code needed for the given PL/I code


IBM Mainframe Forums -> All Other Mainframe Topics
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
spriya

New User


Joined: 06 Oct 2005
Posts: 42

PostPosted: Thu Jul 20, 2006 12:44 pm
Reply with quote

hi

can any one give the equivalent cobol code frm the pl1

DCL CONTRL_BLK_DEF CHAR(100) BASED(CONTRL_BLK_PTR);

DCL CONTRL_BLK_PTR POINTER;

ANDS ALSO EXPLAIN THE PURPOSE OF BASED
Back to top
View user's profile Send private message
neelesht

New User


Joined: 24 Jul 2006
Posts: 99
Location: Los Angeles

PostPosted: Thu Jul 27, 2006 8:05 pm
Reply with quote

Hi Priya,

This is Pointer, I mean in PL1 we have Pointer facility, so you can not convert this to COBOL code. (fortunately COBOl doesn't have pointers :-)).

May be I am unable to explain everything clearly , but we can not convert it to the COBOL code.

Thanks and please let me know if I am wrong.
Back to top
View user's profile Send private message
tsantosh

New User


Joined: 03 Aug 2006
Posts: 8

PostPosted: Tue Aug 22, 2006 2:58 pm
Reply with quote

try declaring these in working storage :

01 MYSTRING PIC X(100) VALUE 'THIS IS MY DATA'
01 MYPOINTER USAGE IS POINTER

and then in procedure division :

SET MYPOINTER TO ADDRESS OF MYSTRING.
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 -> All Other Mainframe Topics

 


Similar Topics
Topic Forum Replies
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts COBOL -Linkage Section-Case Sensitive COBOL Programming 1
No new posts run rexx code with jcl CLIST & REXX 15
No new posts COBOL ZOS Web Enablement Toolkit HTTP... COBOL Programming 0
No new posts Compile rexx code with jcl CLIST & REXX 6
Search our Forums:

Back to Top