online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode() : val(0), next(nullptr) {} * ListNode(int x) : val(x), next(nullptr) {} * ListNode(int x, ListNode *next) : val(x), next(next) {} * }; */ class Solution { public: ListNode* deleteDuplicates(ListNode* head) { if(head==NULL) { return head; } ListNode *curr = head; while(curr->next != NULL) { if(curr->val == curr->next->val) { curr->next = curr->next->next; } else { curr = curr->next; } } return head; } };

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue