Software Archive
Read-only legacy content
17060 Discussions

Type convertion

Intel_C_Intel
Employee
350 Views
How to transform in DF98 an integer to a string variable (analogy itoa in C)?
0 Kudos
1 Reply
sabalan
New Contributor I
350 Views
Try this:

Character StringVar*x 
Integer IntegerVar

WRITE(StringVar,'(I)') IntegerVar


You can use READ to inverse this.

Regards,

Sabalan.
0 Kudos
Reply