- 论坛徽章:
- 59
|
@pmerofc
- const int n= 5;
- int *p = (int *)&n;
- ++*p;
- ...
- for(i = 0;i<n-1;i++)
- {
- ...
- }
复制代码 is it possible the variant "n" be put in ".rdata" section (read-only memory block)?
- char s1[100],s2[100];
- gets(s1);
- gets(s2);
- i = 0;
- while((s1[i] == s2[i])&&(s1[i]!='\0'))i++;
- if(s1[i == '\0'&&s2[i]=='\0'])
- resu = 0;
- else
- resu = s1[i] - s2[i];
复制代码 change to
- char s1[100],s2[100];
- gets(s1);
- gets(s2);
- i = 0;
- while((s1[i] == s2[i])&&(s1[i]!='\0'))i++;
- resu = s1[i] - s2[i];
复制代码 may be better..., be aware of the loop condition |
|