Hi all,
If you have a char pointer (char *var), is there a way I can manipulate
specific characters or blocks of characters within the string?
eg:
char *name;
name = "David"
then change the 3rd character to V so the string now reads :
DaVid?
Thanks for your help
Dave
If you have a char pointer (char *var), is there a way I can manipulate
specific characters or blocks of characters within the string?
eg:
char *name;
name = "David"
then change the 3rd character to V so the string now reads :
DaVid?
Thanks for your help
Dave
Comment