Let\'s say that a function which returns a fixed ‘random text’ string is written like
char *Function1() { return “Some text”; }
then the p
Note also that you can avoid the crash by placing the text in a regular array:
char Function1Str[] = "Some text"; char *Function1() { return Function1Str; }