About STRING* and char

Posted By: 20BN

About STRING* and char - 07/23/18 07:14

Hi, all.

How to set char from STRING*?
------------------------------------------
char bbb;
STRING* aaa = "123";

void test()
{
//bbb = aaa ?
//I need bbb ="123";
//Or how to programming?

}

THANKS ALL.
Posted By: 20BN

Re: About STRING* and char - 07/23/18 07:40

AND

TESTTING

char* bbb;
STRING* aaa = "123";

USE

bbb = _chr(aaa);
© 2024 lite-C Forums