‎2006 Nov 13 7:34 AM
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
‎2006 Nov 13 7:36 AM
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.