Question from the C++ test

Write a C++ program that implements a linked list.

Medium

Name the following data structure (1 correct answer only):

  struct n {
    int key;
    char *value;
    struct n *next;
};
Author: Abha AgrawaStatus: PublishedQuestion passed 404 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!