PRASHNIKAप्रश्निका
‹ Back to the paper

A linked list is formed from the objects of the class Node. The class structure of the Node is…

Computer Science20202 marksShort answer
A linked list is formed from the objects of the class Node. The class structure of the Node is given below:
class Node
{
    int n;
    Node next;
}
Write an Algorithm OR a Method to find the product of the integer numbers from an existing linked list. The method declaration is as follows: void Product_Node( Node str )

Answer

No answer yet.

Data structures

From ISC 2020 Computer Science Paper 1, question 12(a).