Hi!

I want to store data in a string of a struct.

There's an error:
"Crash in main"

code:
Code:
 #include <acknex.h>
#include <default.c>


typedef struct
{

STRING* Name;


} TEST;

TEST* Test;

function main()
{

wait(1);

str_cpy(Test.Name,"hhh");

}



How can I access the string?