Support Board
Date/Time: Wed, 27 Nov 2024 10:28:24 +0000
Post From: Code help, using a string instead of a constant
[2023-08-27 15:18:48] |
ondafringe - Posts: 286 |
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. |