String Operation – Repeat


Program
DATA :   str1  TYPE string VALUE ‘XYZ’,
str2  TYPE string,
times TYPE i  VALUE 5.

WRITE :‘ Before string Repeat:’str1.
str2 repeatval str1 occ times ).   “repeats the string 5 times

WRITE :‘After string Repeat :’str2.


Step1.


Step2. Output:


 

 

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s