Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
~306 People Reached
Favorite Forums
Favorite Tags
c x 3
Member Avatar for Avaleriona

Thanks [CODE]#include <stdio.h> #include <stdlib.h> struct Node{ int data; Node *link; }; typedef Node* NodePtr; void addToEnd(NodePtr* head, int val); void printList(NodePtr head); NodePtr mergeLists(NodePtr* list1, NodePtr* list2); int main() { int nextInt; NodePtr list1 = NULL; NodePtr list2 = NULL; printf( "Enter integers in sorted order for first list, …

Member Avatar for Ancient Dragon
-1
139
Member Avatar for Avaleriona

Write a program that inputs a line of text and uses stack object to print the line reversed. I found this C question in: [url]http://abhaygoel.wordpress.com/c-dac-ent[/url]... I have difficulty to solve it, anyone can help!

Member Avatar for Narue
0
167