이것때문에 3일을 해메고 있습니다. 도와주세요 ㅜㅜ
나려
질문 제목 : 이것때문에 3일을 해메고 있습니다. 도와주세요 ㅜㅜ
질문 요약 :동적 할당된 포인터가호출 함수로 복귀시NULL(0)이 되는 이유 좀...
질문 내용 :
Node *Create_node_match(List **Alias_list, Node ****node_match, const char *name_str, const int *node_match_index)
{
int i;
Node *current_node;
// 메모리 할당
*node_match=(Node***)malloc(sizeof(Node**)*(*node_match_index+1));
*node_match[*node_match_index]=(Node**)malloc(sizeof(Node*)*2);
// name을 리스트에 저장
*node_match[*node_match_index][0]=Deque_add_Node(Alias_list[0], name_str, 0, NULL);
return NULL;
}
void Store_alias_str(List **Alias_list, Command *Cmd, Node ****node_match, int *node_match_index, char *name_str, char *value_str, const int alias_index)
{
int i, j, len;
Node *current_node;
Create_node_match(Alias_list, node_match, name_str, node_match_index);
// value를 리스트에 저장
*node_match[*node_match_index][1]=Deque_add_Node(Alias_list[1], &value_str[1], 0, NULL);
current_node=(*node_match[*node_match_index][1]);
++(*node_match_index);
printf(name : %x\n, *node_match[*node_match_index-1][0]);
printf(value : %x\n, *node_match[*node_match_index-1][1]);
}
Alias_Command *Sh_alias_unalias(Command *Cmd)
{
static int node_match_index=0; // 가장 마지막 인덱스 값보다 항상 1이 크다(갯수 개념)
static Node ***node_match=NULL;
static List **Alias_list=NULL;
// name과 value 값을 리스트에 저장
Store_alias_str(Alias_list, Cmd, &node_match, &node_match_index, name_str, value_str, alias_index);
printf(name : %x\n, node_match[node_match_index-1][0]);
printf(value : %x\n, node_match[node_match_index-1][1]);
}
코드가 좀 길어서 관련된 부분만 최대한 축약했습니다
함수 호출 순서는 Sh_alias_unalias - Store_alias_str - Create_node_match 순서로 호출됩니다
위의 코드를 실행하면 결과가 다음과 같이 나옵니다.name : 9f73de8
value : 9f73e08
name : 9f73de8
value : 0여기서 두번째로 출력되는 value 가 왜 0이 되는지 도저히 모르겠네요(3일을 해매고 있어요 ㅠㅠ)
고수님들 도와주시면 감사드리겠습니다 ㅜㅜ
-
수리 2024-04-06
수다님 감사합니다~ 덕분에 해결했어요 ㅜㅜ 댓글 달아주신 모든 분들께 정말 감사드립니다~^^
-
올리브 2024-04-06
printf(\value : %x\\n\
-
푸른잎 2024-04-06
알아보기 힘들네요 전체소스라도 올려주시면 한줄 돌리서라도 머가 틀렸는지 알수 있겠지만 이렇게 올려주시면 찾기도 힘들어요 ㄷㄷ
-
패틱 2024-04-06
*가 4개나 붙는 경우도 있군요... 코드를 알아보기가 아주 힘드네요.
typedef를 통하여 포인터 변수 등의 이름을 재정의해서 가독성을 높이는 작업이 먼저 필요할 것 같습니다.
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2690627 | c 변수 선언후 변수값 저장안하고 출력 | 방방 | 2025-04-06 |
2690600 | 릴리즈 모드로 컴파일해서 다른 컴퓨터에서도 실행파일을 실행할수 있는 방법 알려주세요 (5) | 제나 | 2025-04-06 |
2690576 | bin파일 저장 | 다올 | 2025-04-06 |
2690547 | C언어 뒷부분이라 너무 어려워서요;; 프로그래밍 하나만 부탁드립니다 (4) | 그루터기 | 2025-04-05 |
2690517 | cygwin에서요.. (1) | 엘보어 | 2025-04-05 |
2690486 | 문자열과 문자형이요 ~ | 다스리 | 2025-04-05 |
2690344 | 일본어 주석 깨짐 문제 (3) | 연하얀 | 2025-04-04 |
2690314 | 암호문 만들기 -비제네르- | 이퓨리한나 | 2025-04-03 |
2690292 | 왕초보자의 질문!!!!!! 도와주세요 (1) | 하랑 | 2025-04-03 |
2690269 | 정올 문제 인데.. 흠 | 반월 | 2025-04-03 |
2690237 | sizeof에서 short형을 썻는데 왜 4byte가 나올까요? (1) | 바나나 | 2025-04-03 |
2690183 | 문자열과 포인트 비교 (2) | 미즈 | 2025-04-02 |
2690154 | a -48 ? | 희미한눈물 | 2025-04-02 |
2690094 | 테트리스 질문요. | 지후 | 2025-04-01 |
2690066 | 문자열비교!! (1) | 매디 | 2025-04-01 |
2689888 | 좀도와주세요;; ㅠㅠ | 사람 | 2025-03-30 |
2689856 | 메뉴 그리는 거 질문 | 나라빛 | 2025-03-30 |
2689831 | c언어 프로그램 추천 | 하연 | 2025-03-30 |
2689801 | c언어 time.h에서 작동이 중지되었습니다. | 하람 | 2025-03-30 |
2689772 | 2차원 배열의 배열명에 대해서.. | 옆집꼬마야 | 2025-03-29 |