I recently stuck with an error in simple string concatenation operation in Amibroker development kit.
I may be missing some basic thing but I didn't find anything.
While I was successfully able to do the same with the usual C++ application code but not in ADK.
Why is there is a difference in behavior between a normal string and AmiVar string?
Please guide.
Thanks, Dear Tomasz and alligator for your quick response.
With this clarification and a lot of basic exercises, I finally reached to the solution.
After exercise I could now understand that AmiVar string type is not a "C string" but a "char*" and so I cannot treat it like a normal string. While working with afl and float arrays in dll mostly, I missed some basic concepts but now I have refreshed them and working for me. Thank you all.