pointer string

Go4Expert Member
17Oct2008,03:37   #1
cimon's Avatar
Hello

If I take a string declaration as below:

char str[5]="Mike";
than the following statement does NOT produce error
str[start] ^= str[end];

If I take a string declaration as below:
char *str="Mike";
that the above mentioned statement str[start] ^= str[end]; DOES produce error.

So I want to know , that if my string declaration is as in second case (char *str="Mike" than , how to write XOR statement so that it should not produce error.

Thank You
Ambitious contributor
17Oct2008,04:04   #2
oogabooga's Avatar
The second case is a pointer to a string CONSTANT.
So you cannot (generally) change it.
Go4Expert Member
18Oct2008,07:13   #3
cimon's Avatar
Thank you
Go4Expert Member
20Oct2008,17:16   #4
micsom's Avatar
buddy i tried out ur code
char *str="MIKE";
str[0]^=str[4];
printf(" %s",str);

it gives no error... so i dont get it were is ur problem?
Mentor
20Oct2008,22:33   #5
xpi0t0s's Avatar
micsom, you're probably using a different compiler, which one is it? Modifying a string constant should throw an error, since it's an operation you shouldn't perform.

XOR-ing something with zero DOESN'T modify it, so mabye the compiler's outsmarting the lot of us. Try this:
Code:
char *str1="Mike";
char *str2=str1;
xtr1[0]^=str[3];
printf("%s\n",str2);
Contributor
15Nov2008,12:49   #6
back from retirement's Avatar
Quote:
Originally Posted by xpi0t0s
Try this:
Code:
char *str1="Mike";
char *str2=str1;
xtr1[0]^=str[3];
printf("%s\n",str2);
I have tried it in my pc....I modified it a bit....and it is running without error....

my code is...
Code:
#include<stdio.h>
#include<conio.h>

void main()
{
char *str1="Mike";
char *str2=str1;
str1[0]^=str1[4];
printf("%s\n",str2);
getch();
}
Is there anything wrong in my understanding??
Contributor
15Nov2008,12:53   #7
back from retirement's Avatar
Actually i first tried with th given code for which the output was:
Code:
(ike
I don't know why....

But then when I changed str1[3] to str1[4], the problem got solved immediately....cna anyone explain me why??
Mentor
15Nov2008,19:01   #8
xpi0t0s's Avatar
Well as I said you shouldn't modify string constants so str1[<anything>]^=<anthing> should throw an error - a compile time error if nothing else.
However if it works, to find out why 'M' xor 'e' produces '(' you'll need to look at an ASCII table and the binary values of those three characters.
'M' xor str1[4] = 'M', since str1[4]=0 (it's the terminating NULL). And as I said above, xor-ing anything with zero has no effect.
Contributor
15Nov2008,20:34   #9
back from retirement's Avatar
Thanks......now I hope I understand the lot....thank you very very much xpi0tos