我有一個使用命令行提示符argv和argc來接收字符串的程序。當我去運行代碼時,我經常遇到分段錯誤,經過大量研究,我無法確定可能導致此問題的原因。也許我如何執行代碼是問題?我使用的是gcc -o代碼code.c,然後./code一二三,其中一個兩個三是添加到鏈接列表的字符串。任何幫助確定我的錯誤可能會很大。C程序:使用argv,argc,分段錯誤創建鏈接列表
這裏是我的代碼:
#include <stdio.h>
#include <stdlib.h>
typedef struct list_node_s{
char the_char;
struct list_node_s *next_node;
}list_node;
void insert_node(list_node *the_head, char the_char);
void print_list(list_node *the_head);
int main(int argc, char *argv[]){
char next_char;
list_node *the_head = NULL;
insert_node(the_head, next_char);
the_head->next_node = malloc(sizeof(list_node));
if(the_head == NULL){
return 1;
}
the_head->the_char = 1;
the_head->next_node == NULL;
int the_count, the_count2;
for(the_count = 0; the_count < sizeof(argv); the_count++){
for(the_count2 = 0; argv[the_count][the_count2] != '\0'; the_count2++){
next_char = argv[the_count][the_count2];
insert_node(the_head, next_char);
}
}
print_list(the_head);
return (0);
}
void insert_node(list_node *the_head, char the_char){
list_node * current_node = the_head;
while (current_node->next_node != NULL) {
current_node = current_node->next_node;
}
current_node->next_node = malloc(sizeof(list_node));
current_node->next_node->the_char = the_char;
current_node->next_node->next_node = NULL;
}
void print_list(list_node *the_head){
if(the_head == NULL){
printf("\n");
}else{
printf("%c", the_head->the_char);
print_list(the_head->next_node);
}
}
您的剪切和粘貼有問題嗎?什麼是'the_co $'? – Barmar
'sizeof(argv)'幾乎可以肯定不是你想用作'for'限制的東西。 'argv'是一個指針,它的大小與參數的數量無關。這就是'argc'的用途。 – Barmar
該行the_head-> next_node == NULL幾乎肯定是錯誤的。您可能想要說=(第27行) –