0

这里在print_list()编译器显示以下错误的 fn 中有一个错误

error: expected ';', ',' or ')' before '=' token

请帮忙,因为我是这方面的新手。

我认为这不是语法错误,我无法按照我的预期识别代码中的问题,它应该可以正常工作。请建议我函数 print_list 有什么问题,或者调用同一函数有什么问题。

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

typedef struct node 
{
    int value;
    struct node *next;
    }mynode;
void add(mynode **, int);
void print_list(mynode *);
main()
{
mynode *head=NULL;

add(&head, 10);
add(&head, 100);
add(&head, 1000);
print_list(head);
}

void add(mynode **head_1, int value)
{
 mynode *temp=NULL;
 mynode ** head = head_1;
 temp = malloc(sizeof(mynode));
 temp->value = value;
 temp->next = NULL;
 if (*head == NULL)
    {
        *head = temp;
    }
    else
    {
        while(*head!=NULL)
        {
            *head = (*head)->next;
        }
        *head = temp;
    }
    return;
}
void print_list(mynode *head)
(
    mynode *temp = head;
    while(temp != NULL)
    {
        temp=temp->next;
    printf("%d \t", temp->value);    
    }

    )
4

3 回答 3

8

使用{而不是(.

void print_list(mynode *head)
{
    mynode *temp = head;
    while(temp != NULL)
    {
        temp=temp->next;
    printf("%d \t", temp->value);    
    }
}
于 2013-11-08T05:04:32.673 回答
4

你用错了牙套

 void print_list(mynode *head)
( //error should be {
    mynode *temp = head;
    while(temp != NULL)
    {
        temp=temp->next;
    printf("%d \t", temp->value);    
    }

    )//error should be }
于 2013-11-08T05:04:39.673 回答
2

您必须使用{函数体而不是 '('

于 2013-11-08T05:07:03.593 回答