- 论坛徽章:
- 0
|
本帖最后由 Yamatehhhhhh 于 2017-09-30 17:04 编辑
程序代码如下,在外层while循环到第三次时,调用完malloc函数(第16行),发现字符数组buffer的值被修改了,看上去像是被覆盖了。
- #include <stdio.h>
- #include <stdlib.h>
- #define NUMERIC 0
- #define OPERATOR 1
- int main() {
- char buffer[] = "1.5+2*3^4/-5"; // The expression buffer
- char *pbuffer = buffer; // The pointer to expression buffer
- char *pelements[] = {NULL}; // Restore the elements have been parsed
- size_t index = 0; // The index of element is being parse
- int type = NUMERIC; // The type of current index, NUMERIC or OPERATOR
- while(*pbuffer != '\0') {
- int i = 0;
- printf("Line %d: %s\n", __LINE__, buffer); // The index for pelements[index]
- pelements[index] = (char *)malloc(320); // Alloc memory for pointer
- printf("Line %d: %s\n", __LINE__, buffer);
- if(type == NUMERIC) {
- printf("Line %d: %s\n", __LINE__, buffer);
- *(pelements[index]+i++) = *pbuffer++; // Read one char firstly
- while(*pbuffer!='-' && *pbuffer!='+' && *pbuffer!='/' && *pbuffer!='*' && *pbuffer!='^' && *pbuffer!='\0') {
- *(pelements[index]+i++) = *pbuffer++;
- }
- *(pelements[index]+i) = '\0'; // Add '\0'
- index++;
- type = OPERATOR;
- } else {
- if(*pbuffer=='\0') break;
- *(pelements[index]+i++) = *pbuffer++;
- *(pelements[index]+i) = '\0';
- index++;
- type = NUMERIC;
- printf("Line %d: %s\n", __LINE__, buffer);
- }
- }
- }
复制代码
|
|