Page 1 of 1

Error in char[i++]

Posted: Sat Aug 15, 2015 1:15 am
by CyborgDE
Hello,

i have a char[] with 6 items and a reference (from a function call) variable i:
charArray[6] => "*root*"

this does not work :

Code: Select all

char c = charArray[i++];


this does work :

Code: Select all

char c = charArray[i];
i++;


Best reagrds,
Uwe

Re: Error in char[i++]

Posted: Thu Aug 20, 2015 4:54 am
by JS-Support @Userware
Hello,

Thanks a lot for reporting this issue.

I have added it to our backlog. We are going to fix it asap.

Regards,
JS-Support