Your program is syntactically valid C++, but it will produce undefined behaviour because you pass the address of a stack object to the heap allocator. Typically this means that your program will crash when executed.
The stack and the heap are two distinct areas of memory allocated to the process executing your program. The stack grows as you enter a function to hold its arguments and local variables, and it shrinks automatically as you return from the function. The heap, on the other hand, is a separate address region where memory may be obtained on demand, and must be released explicitly when it is no longer needed.
If the address of a local variable is passed to realloc(), it may attempt to free its memory and allocate it elsewhere. Since the address is not from the heap, and realloc() operates on the heap, this will fail. Most likely realloc() will detect the address is not from the heap and abort the program.
Apart from this, the example program contains a few logical errors.
char myString = NULL;
You declare a variable to hold a char, not a string. A C-style string has type char*, i.e. a pointer to char.
Also, the char is assigned NULL, the address zero which is conventionally assigned to invalid pointers. This compiles because the preprocessor replaces NULL by the literal 0. Really, you store a zero byte in the char, which is, also by convention, the terminator of a C-style string.
realloc(&myString, 5);
As mentioned above, this is illegal because you pass the address of a stack object to the heap allocator. This problem remains in your second code example.
Also, you discard the return value. realloc() returns the address where the new memory was allocated. It may not be the same address as before. It may even be NULL, which is realloc()'s way of telling you it went out of memory.
strncpy((char *)&myString, "test", 5);
This is correct, but the cast is redundant.
Here is a more correct version of your program:
#include <stdlib.h>
#include <string.h>
int main()
{
/* allocate space for, say, one character + terminator */
char* myString = (char*) malloc(2);
/* some code using myString omitted */
/* get more space */
myString = (char*) realloc(myString, 5);
/* write to the string */
strncpy(myString, "test", 5);
/* free the memory */
free(myString);
return 0;
}
In C++, it is better to avoid realloc() entirely. For example, you could use something like the following:
#include <string>
int main()
{
std::string myString;
/* some code using myString */
myString = "test";
return 0;
}