Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

unicode

Former Member
0 Likes
302

What should be the length If I convert a p type data to character.

example,

data : x(300),

y(4) type p.

here I am using middle struct which is of type C, (in unicode only C type allowed for Move stmts)

here x = y.

what should be the length for y here for character type, only for or 6 or?

please help me

1 REPLY 1
Read only

Former Member
0 Likes
273

i think it is <b>2n-1</b>

n---> length of p type.

ex---

data: kis(4) type p value '-3000.0000000000000000000000'.

data: kis1(7).

kis1 = kis.

write: kis1.