Even after odd linked list RUN TIME ERROR

attempt link : https://ide.codingblocks.com/s/46571

question :
EVEN-AFTER-ODD
Arrange elements in a Linked List such that all even numbers are placed after odd numbers.

Input Format:
Enter N space separated Elements

Constraints:
None

Output Format
Linked list with all the odd numbers before even numbers

Sample Input
5
1 2 2 2 1
Sample Output
1 1 2 2 2

would be really grateful for your help.
thank you

https://ide.codingblocks.com/s/46631

I have made some changes. Now “aslipapa” is correct :smile:

thankyou so much sir

1 Like