Skip to main content
2 of 2
added 18 characters in body
duck
  • 1.3k
  • 10
  • 27

What does the following code in Morse Code Arduino mean?

  struct node *root, *currentNode;
  root = (struct node*)malloc(sizeof(struct node));
  root->value = '\0';
  root->next = 0;
  currentNode = root;