check with tis....
NODE reverse(NODE first)
{
NODE cur,temp;
cur = NULL;
while(first != NULL)
{
temp = first;
first = first->link;
temp->link = cur;
cur = temp;
}
return cur;
}
Tuesday, January 2, 2007
Subscribe to:
Post Comments (Atom)
Thats mee ...
About Me
- Naresh Kumar
- Delhi, Delhi, India
- I am an Electrical Engineering student of Indian Institute of Technology, Delhi. I am currently in 5th year of my Dual Degree course. By the end of this course I will proudly be called Masters in Information and Communication Technology. I have hard core programming interest and good at Networking Fundamentals. Enjoy surfing around Linux journals.
Blog Archive
-
▼
2007
(13)
-
▼
January
(12)
- IP Masquerading with Linux
- Developing P2P Protocols across NAT
- A Stream Socket API for C++
- Sockets API
- Ch-1 Networking Basics
- Ch-1 Networking Basics
- Network Programming
- IBM tech paper for placement .. I only hope that i...
- For Network Managers
- Anothr good Problem
- check with tis.... NODE reverse(NODE first){NODE ...
- Are looking for specific interview question?! The...
-
▼
January
(12)
No comments:
Post a Comment