total newbie here.
i was trying to replace a character in char * but my program gives error
#include <stdio.h>
int main(int argc, char **argv)
{
char *mystring ="love is alweys better yoe";
int count = 1;
for (count ; count < 23; count++)
{
if ((mystring[count] == 0x65 )) //&& ((mystring[count+1] > 0x41) && (mystring[count+1] < 0x7A)))
{
mystring[count] = 0x45; //here occur the freezing
printf ("%c
", mystring[count]);
//break;
};
};
printf("%s
",mystring);
return 0;
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…