R
Rafi Kfir
HI,
I would like to ask if the follwoing example is correct:
char *Title=NULL;
Title = "This is message 1";
----
----
---
Title = This is another message";
It works fine for me but I was advised to use memory allocation like
malloc. Is it necessary? I don't seem to have problem with it...
Thank you
I would like to ask if the follwoing example is correct:
char *Title=NULL;
Title = "This is message 1";
----
----
---
Title = This is another message";
It works fine for me but I was advised to use memory allocation like
malloc. Is it necessary? I don't seem to have problem with it...
Thank you