Software Archive
Read-only legacy content
Announcements
FPGA community forums and blogs have moved to the Altera Community. Existing Intel Community members can sign in with their current credentials.
17060 Discussions

Type convertion

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

Character StringVar*x 
Integer IntegerVar

WRITE(StringVar,'(I)') IntegerVar


You can use READ to inverse this.

Regards,

Sabalan.
0 Kudos
Reply