Defining the structure
| 3 | |
| 4 | //Defining the structure |
| 5 | struct Node{ |
| 6 | int data; |
| 7 | struct Node *next; |
| 8 | Node(int x) |
| 9 | { |
| 10 | data=x; |
| 11 | next=NULL; |
| 12 | } |
| 13 | }; |
| 14 | |
| 15 | |
| 16 | bool isPalindrome(Node *head); |
nothing calls this directly
no outgoing calls
no test coverage detected