이것때문에 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를 통하여 포인터 변수 등의 이름을 재정의해서 가독성을 높이는 작업이 먼저 필요할 것 같습니다.
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676033 | 배열 기초연습중 발생하는 에러 ㅠㅜ... | Creative | 2024-11-23 |
2676005 | keybd_event 게임 제어 | 영글 | 2024-11-23 |
2675900 | 진짜기본적인질문 | 글길 | 2024-11-22 |
2675845 | 수정좀해주세요ㅠㅠㅠ | 해골 | 2024-11-21 |
2675797 | 병합 정렬 소스 코드 질문입니다. (2) | 도래솔 | 2024-11-21 |
2675771 | 큐의 활용이 정확히 어떻게 되죠?? | 해긴 | 2024-11-21 |
2675745 | 도서관리 프로그램 질문이요 | 도리도리 | 2024-11-20 |
2675717 | 2진수로 변환하는것! (3) | 동생몬 | 2024-11-20 |
2675599 | for문 짝수 출력하는 법 (5) | 널위해 | 2024-11-19 |
2675575 | Linux 게시판이 없어서.. | 첫삥 | 2024-11-19 |
2675545 | 구조체 이용할 때 함수에 자료 넘겨주는 것은 어떻게 해야 하나요? | 아연 | 2024-11-19 |
2675518 | 사각형 가로로 어떻게 반복해서 만드는지좀.. 내용 | 신당 | 2024-11-18 |
2675491 | !느낌표를 입력하는것은 어떻게합니까~~?ㅠㅠ (5) | 사지타리우스 | 2024-11-18 |
2675411 | 파일입출력으로 받아온 파일의 중복문자열을 제거한 뒤 파일출력 | 앨버트 | 2024-11-17 |
2675385 | 링크드리스트 주소록 질문드립니다. (1) | 겨루 | 2024-11-17 |
2675356 | 2진수를 10진수로 바꾸려고 하는데 막히네요.. | 풀잎 | 2024-11-17 |
2675297 | Prity 비트 발생기 | 한란 | 2024-11-16 |
2675249 | C책 좀 추천해 주세요 (2) | 딸기우유 | 2024-11-16 |
2675193 | 연습문제 17-1 질문입니다. | 한별나라 | 2024-11-15 |
2675172 | 소스점 | 아이뻐 | 2024-11-15 |