Support Board
Date/Time: Fri, 23 May 2025 22:12:59 +0000
Post From: Code help, using a string instead of a constant
[2023-08-27 15:18:48] |
ondafringe - Posts: 322 |
I don't know enough to help you, other than to say: I think this char* formula; creates a pointer called "formula" It doesn't create a variable called "formula" and you can't assign a value to a pointer like this const char* Formula = sc.Input[InputIndex].GetString(); like you would to a variable. So you might want to do some digging into c++ pointers. |