<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Implementing stack and Lucas series in C++ in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/implementing-stack-and-lucas-series-in-c/m-p/5198563#M680657</link>
    <description>Hi:&lt;BR /&gt;&lt;BR /&gt;I'm sorry but this sounds like a HOMEWORK exercise for a course you are taking.&lt;BR /&gt;&lt;BR /&gt;Homework assignments are not what this Forum is about.&lt;BR /&gt;&lt;BR /&gt;You will learn far more by trying yourself.  Good luck.&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
    <pubDate>Thu, 10 Sep 2009 23:11:44 GMT</pubDate>
    <dc:creator>James R. Ferguson</dc:creator>
    <dc:date>2009-09-10T23:11:44Z</dc:date>
    <item>
      <title>Implementing stack and Lucas series in C++</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/implementing-stack-and-lucas-series-in-c/m-p/5198562#M680656</link>
      <description>Hi All,&lt;BR /&gt;&lt;BR /&gt;Can anybody help me for these programs. &lt;BR /&gt;1) Write a C++ program to generate Lucas series&lt;BR /&gt;&lt;BR /&gt;2) Write a C++ program to accept the student's information of UG&lt;BR /&gt;students in a college. Also include the functions for searching student&lt;BR /&gt;information and updating the existing information.&lt;BR /&gt;&lt;BR /&gt;3) Write a C++ program to create a doubly linked list and support the&lt;BR /&gt;following operation:&lt;BR /&gt;i). Insertion at the rear end&lt;BR /&gt;ii). Insertion at the specific position&lt;BR /&gt;iii). Traversing the entire list and displaying the nodes.&lt;BR /&gt;iv). Counting the occurrence of duplicate nodes&lt;BR /&gt;&lt;BR /&gt;4) Write a C++ program to implement Stack data structure</description>
      <pubDate>Thu, 10 Sep 2009 22:22:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/implementing-stack-and-lucas-series-in-c/m-p/5198562#M680656</guid>
      <dc:creator>Srekandan CR</dc:creator>
      <dc:date>2009-09-10T22:22:18Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing stack and Lucas series in C++</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/implementing-stack-and-lucas-series-in-c/m-p/5198563#M680657</link>
      <description>Hi:&lt;BR /&gt;&lt;BR /&gt;I'm sorry but this sounds like a HOMEWORK exercise for a course you are taking.&lt;BR /&gt;&lt;BR /&gt;Homework assignments are not what this Forum is about.&lt;BR /&gt;&lt;BR /&gt;You will learn far more by trying yourself.  Good luck.&lt;BR /&gt;&lt;BR /&gt;...JRF...</description>
      <pubDate>Thu, 10 Sep 2009 23:11:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/implementing-stack-and-lucas-series-in-c/m-p/5198563#M680657</guid>
      <dc:creator>James R. Ferguson</dc:creator>
      <dc:date>2009-09-10T23:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing stack and Lucas series in C++</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/implementing-stack-and-lucas-series-in-c/m-p/5198564#M680658</link>
      <description>&amp;gt;3) Write a C++ program to create a doubly linked list and support the following operation:&lt;BR /&gt;&lt;BR /&gt;That's called template std::list.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;iii). Traversing the entire list and displaying the nodes.&lt;BR /&gt;&amp;gt;iv). Counting the occurrence of duplicate nodes&lt;BR /&gt;&lt;BR /&gt;&lt;ALGORITHM&gt; may help here.&lt;BR /&gt;&lt;BR /&gt;&amp;gt;4) Write a C++ program to implement Stack data structure&lt;BR /&gt;&lt;BR /&gt;That's called template std::stack.&lt;/ALGORITHM&gt;</description>
      <pubDate>Fri, 11 Sep 2009 11:22:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/implementing-stack-and-lucas-series-in-c/m-p/5198564#M680658</guid>
      <dc:creator>Dennis Handly</dc:creator>
      <dc:date>2009-09-11T11:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing stack and Lucas series in C++</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/implementing-stack-and-lucas-series-in-c/m-p/5198565#M680659</link>
      <description>yahoo turns up numerous hits on "Lucas series", including almost exactly the same question (2 weeks ago) on ask.com.  &lt;BR /&gt;&lt;BR /&gt;Seems they responded w/ "do your own homework" there as well.</description>
      <pubDate>Fri, 11 Sep 2009 12:38:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/implementing-stack-and-lucas-series-in-c/m-p/5198565#M680659</guid>
      <dc:creator>OldSchool</dc:creator>
      <dc:date>2009-09-11T12:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing stack and Lucas series in C++</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/implementing-stack-and-lucas-series-in-c/m-p/5198566#M680660</link>
      <description>Thx. for everybody. Its here. &lt;BR /&gt;&lt;BR /&gt;Lucas:&lt;BR /&gt;&lt;BR /&gt;#include&lt;IOSTREAM.H&gt;&lt;BR /&gt;&lt;BR /&gt; void main(){&lt;BR /&gt;   int L0,L1,temp,MAX;&lt;BR /&gt;      L0=2;&lt;BR /&gt;      L1=1;&lt;BR /&gt;      cout &amp;lt;&amp;lt;" Enter the number of max no of values in series";&lt;BR /&gt;      cin &amp;gt;&amp;gt; MAX ;&lt;BR /&gt;            cout &amp;lt;&amp;lt; LO &amp;lt;&amp;lt; L1;&lt;BR /&gt;&lt;BR /&gt;         for(i=0;i&lt;MAX&gt;&lt;/MAX&gt;            temp=L0+L1;&lt;BR /&gt;            L0=L1;&lt;BR /&gt;             L1=temp;&lt;BR /&gt;          cout &amp;lt;&amp;lt;  L1;&lt;BR /&gt;           }&lt;BR /&gt;      }&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;=============================================================&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;doubly link&lt;BR /&gt;&lt;BR /&gt;#include &lt;IOSTREAM.H&gt;&lt;BR /&gt;&lt;BR /&gt;class node&lt;BR /&gt;{&lt;BR /&gt;public:&lt;BR /&gt;int value;           //value stored in the node &lt;BR /&gt;node *next;          //pointer to next node &lt;BR /&gt;node *prev;          //pointer to previous node &lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;class dlist&lt;BR /&gt;{&lt;BR /&gt;public:&lt;BR /&gt;node *front;       //pointer to front of list   &lt;BR /&gt;node *back;        //pointer to back of list  &lt;BR /&gt;&lt;BR /&gt;dlist()&lt;BR /&gt;{&lt;BR /&gt; front=NULL;&lt;BR /&gt; back=NULL;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;void insertFront(int value);             &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;void insertBefore(int value,node *nodeB);&lt;BR /&gt;void insertAfter(int value,node *nodeA);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;void printDListFront();&lt;BR /&gt;&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;//insert a node before the front node &lt;BR /&gt;void dlist::insertFront (int value)&lt;BR /&gt;  {&lt;BR /&gt;   node *newNode;&lt;BR /&gt;   if(this-&amp;gt;front==NULL)&lt;BR /&gt;   {&lt;BR /&gt;    newNode=new node();&lt;BR /&gt;    this-&amp;gt;front=newNode;&lt;BR /&gt;    this-&amp;gt;back =newNode;&lt;BR /&gt;     newNode-&amp;gt;prev=NULL;&lt;BR /&gt;     newNode-&amp;gt;next=NULL;&lt;BR /&gt;     newNode-&amp;gt;value=value;&lt;BR /&gt;     &lt;BR /&gt;   }&lt;BR /&gt;   else&lt;BR /&gt;   {&lt;BR /&gt;     insertBefore(value,this-&amp;gt;front );&lt;BR /&gt;   }&lt;BR /&gt;  }&lt;BR /&gt;&lt;BR /&gt;//insert a node at specified position  nodeB&lt;BR /&gt;void dlist::insertAfter(int value,node *nodeB)&lt;BR /&gt; {&lt;BR /&gt;  node *newNode;&lt;BR /&gt;  newNode=new node();&lt;BR /&gt;  newNode-&amp;gt;next= nodeB-&amp;gt;next ;&lt;BR /&gt;  newNode-&amp;gt;prev  =nodeB;&lt;BR /&gt;  newNode-&amp;gt;value =value;&lt;BR /&gt;&lt;BR /&gt;  if(nodeB-&amp;gt;next==NULL)&lt;BR /&gt;  {&lt;BR /&gt;   cout&amp;lt;&amp;lt;"\n "&amp;lt;&amp;lt; endl;&lt;BR /&gt;   this-&amp;gt;back =newNode; &lt;BR /&gt;  }&lt;BR /&gt;   nodeB-&amp;gt;next=newNode;&lt;BR /&gt;   cout&amp;lt;&amp;lt;"2"&amp;lt;&lt;ENDL&gt;&lt;/ENDL&gt; }&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;//Print the list from front &lt;BR /&gt;void dlist::printDListFront()&lt;BR /&gt;{&lt;BR /&gt; node* curr2;&lt;BR /&gt;  curr2= this-&amp;gt;front;&lt;BR /&gt;  cout&amp;lt;&amp;lt;"\n-----\n";&lt;BR /&gt;  cout&amp;lt;&amp;lt;"Queue\n";&lt;BR /&gt;  cout&amp;lt;&amp;lt;"-----\n";&lt;BR /&gt;  //cout&amp;lt;&amp;lt;"size:"&amp;lt;&lt;GETQUEUESIZE&gt;&lt;/GETQUEUESIZE&gt; while(curr2!=NULL)&lt;BR /&gt;  {&lt;BR /&gt;   cout&amp;lt;&amp;lt;" |"&amp;lt;&lt;CURR2-&gt;value&amp;lt;&amp;lt;"|";&lt;BR /&gt;   curr2=curr2-&amp;gt;next;&lt;BR /&gt;  }&lt;BR /&gt;  cout&amp;lt;&lt;ENDL&gt;&lt;/ENDL&gt;}// print the Double Linked List from front&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;void main()&lt;BR /&gt;{&lt;BR /&gt; dlist *st ;&lt;BR /&gt; st= new dlist();&lt;BR /&gt;st-&amp;gt;insertBack(8); &lt;BR /&gt;st-&amp;gt;printDListFront ();&lt;BR /&gt;st-&amp;gt;insertBack(5); &lt;BR /&gt;st-&amp;gt;printDListFront ();&lt;BR /&gt;st-&amp;gt;insertBack(6); &lt;BR /&gt;st-&amp;gt;printDListFront ();&lt;BR /&gt;st-&amp;gt;insertFront(1) ;&lt;BR /&gt;st-&amp;gt;printDListFront ();&lt;BR /&gt;st-&amp;gt;insertFront(3) ;&lt;BR /&gt;st-&amp;gt;printDListFront ();&lt;BR /&gt;st-&amp;gt;insertBack(7); &lt;BR /&gt;st-&amp;gt;printDListFront ();&lt;BR /&gt;st-&amp;gt;removeFront();&lt;BR /&gt;st-&amp;gt;printDListFront ();&lt;BR /&gt;st-&amp;gt;removeBack();&lt;BR /&gt;st-&amp;gt;printDListFront ();&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;====================================================================================================================&lt;BR /&gt;&lt;BR /&gt;STUDENT INFORMATION&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;include&amp;lt; iostream.h&amp;gt;&lt;BR /&gt;#include&amp;lt; conio.h&amp;gt;&lt;BR /&gt;class student&lt;BR /&gt;{&lt;BR /&gt;int count;&lt;BR /&gt;struct stud&lt;BR /&gt;{&lt;BR /&gt;int rollno;&lt;BR /&gt;char name[10];&lt;BR /&gt;float marks;&lt;BR /&gt;}s[10];&lt;BR /&gt;&lt;BR /&gt;public:&lt;BR /&gt;void getcount(void);&lt;BR /&gt;void getdata(void);&lt;BR /&gt;void putdata(void);&lt;BR /&gt;void findranker(void);&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;void student::getcount(void)&lt;BR /&gt;{&lt;BR /&gt;cout&amp;lt; &amp;lt; "Enter no of Students:";&lt;BR /&gt;cin&amp;gt;&amp;gt;count;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;void student::getdata(void)&lt;BR /&gt;{&lt;BR /&gt;int i;&lt;BR /&gt;for(i=0;i&amp;lt; count;i++)&lt;BR /&gt;{&lt;BR /&gt;cout&amp;lt; &amp;lt; "Name: ";&lt;BR /&gt;cin&amp;gt;&amp;gt;s[i].name;&lt;BR /&gt;cout&amp;lt; &amp;lt; "Roll no:";&lt;BR /&gt;cin&amp;gt;&amp;gt;s[i].rollno;&lt;BR /&gt;cout&amp;lt; &amp;lt; "marks:";&lt;BR /&gt;cin&amp;gt;&amp;gt;s[i].marks;&lt;BR /&gt;}&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;void student::putdata(void)&lt;BR /&gt;{&lt;BR /&gt;int i;&lt;BR /&gt;cout&amp;lt; &amp;lt; "_______________________________________"&amp;lt; &amp;lt; endl;&lt;BR /&gt;cout&amp;lt; &amp;lt; "Name\t"&amp;lt; &amp;lt; "Roll no.\t"&amp;lt; &amp;lt; "Marks"&amp;lt; &amp;lt; endl;&lt;BR /&gt;cout&amp;lt; &amp;lt; "---------------------------------------"&amp;lt; &amp;lt; endl;&lt;BR /&gt;for(i=0;i&amp;lt; count;i++)&lt;BR /&gt;cout&amp;lt; &amp;lt; s[i].name&amp;lt; &amp;lt; "\t"&amp;lt; &amp;lt; s[i].rollno&amp;lt; &amp;lt; "\t\t"&amp;lt; &amp;lt; s[i].marks&amp;lt; &amp;lt; endl;&lt;BR /&gt;cout&amp;lt; &amp;lt; "---------------------------------------";&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;void student::findranker(void)&lt;BR /&gt;{&lt;BR /&gt;int i,loc=0;&lt;BR /&gt;float top;&lt;BR /&gt;top=s[0].marks;&lt;BR /&gt;for(i=0;i&amp;lt; count;i++)&lt;BR /&gt;{&lt;BR /&gt;if(s[i].marks&amp;gt;top)&lt;BR /&gt;{&lt;BR /&gt;top=s[i].marks;&lt;BR /&gt;loc=i;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;}&lt;BR /&gt;cout&amp;lt; &amp;lt; "\nThe Ranker Is:";&lt;BR /&gt;cout&amp;lt; &amp;lt; s[loc].name;&lt;BR /&gt;}&lt;BR /&gt;void main()&lt;BR /&gt;{&lt;BR /&gt;clrscr();&lt;BR /&gt;student s;&lt;BR /&gt;s.getcount();&lt;BR /&gt;s.getdata();&lt;BR /&gt;s.putdata();&lt;BR /&gt;s.findranker();&lt;BR /&gt;getch();&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;================================================================================================================&lt;BR /&gt;&lt;BR /&gt;STACK  OPERATIONS&lt;BR /&gt;&lt;BR /&gt;#include &lt;STDIO.H&gt;&lt;BR /&gt;#include &lt;CONIO.H&gt;&lt;BR /&gt;#include &lt;IOSTREAM.H&gt;&lt;BR /&gt;#include &lt;STDLIB.H&gt;&lt;BR /&gt;&lt;BR /&gt;class element   &lt;BR /&gt;{&lt;BR /&gt;public:&lt;BR /&gt;int value;&lt;BR /&gt;element* next;&lt;BR /&gt;};//class element&lt;BR /&gt;&lt;BR /&gt;class stack &lt;BR /&gt;{&lt;BR /&gt;public:&lt;BR /&gt;int size;&lt;BR /&gt;element* current;&lt;BR /&gt;&lt;BR /&gt;stack()&lt;BR /&gt;{&lt;BR /&gt;  size=0;&lt;BR /&gt;  current=NULL;&lt;BR /&gt;}//default constructor&lt;BR /&gt;&lt;BR /&gt;bool push(int,element*);&lt;BR /&gt;bool pop();&lt;BR /&gt;bool isEmpty();&lt;BR /&gt;int getStackSize();&lt;BR /&gt;void printStackSize();&lt;BR /&gt;void printStackElements(element*);&lt;BR /&gt;void printStackMenu();&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;bool stack::push(int ele,element* temp)&lt;BR /&gt;{&lt;BR /&gt; temp=new element;&lt;BR /&gt; if(current==NULL)&lt;BR /&gt; {&lt;BR /&gt;  temp-&amp;gt;next=NULL;&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt;  temp-&amp;gt;next=current;&lt;BR /&gt; }&lt;BR /&gt; temp-&amp;gt;value=ele;&lt;BR /&gt; current=temp;&lt;BR /&gt; printf("%d inserted\n\n",ele);&lt;BR /&gt; size++;&lt;BR /&gt;    return false;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;bool stack::pop()&lt;BR /&gt;{&lt;BR /&gt; if(isEmpty())&lt;BR /&gt; {&lt;BR /&gt; cout&amp;lt;&amp;lt;"\nStack is Empty\n";      &lt;BR /&gt; return false;&lt;BR /&gt; }&lt;BR /&gt; else&lt;BR /&gt; {&lt;BR /&gt; cout&amp;lt;&amp;lt;"\n Element To POP :"&amp;lt;&lt;CURRENT-&gt;value;&lt;BR /&gt; cout&amp;lt;&amp;lt;"\n Before POP";&lt;BR /&gt; printStackElements(current);&lt;BR /&gt; current=current-&amp;gt;next;&lt;BR /&gt; cout&amp;lt;&amp;lt;"\n After POP";&lt;BR /&gt; printStackElements(current);&lt;BR /&gt; size=size--;&lt;BR /&gt; }&lt;BR /&gt; return true;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;bool stack::isEmpty()&lt;BR /&gt;{&lt;BR /&gt; if(getStackSize()==0)&lt;BR /&gt; return true;&lt;BR /&gt; &lt;BR /&gt; return false;&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;int stack::getStackSize()&lt;BR /&gt;{&lt;BR /&gt;return size;&lt;BR /&gt;}//returns size of the stack&lt;BR /&gt;&lt;BR /&gt;void stack::printStackSize()&lt;BR /&gt;{&lt;BR /&gt;cout&amp;lt;&amp;lt;"\nThe Size of the Stack:"&amp;lt;&lt;SIZE&gt;&lt;/SIZE&gt;}//print the stack size&lt;BR /&gt;&lt;BR /&gt;void stack::printStackElements(element* base)&lt;BR /&gt;{&lt;BR /&gt;      element* curr2;&lt;BR /&gt;  curr2= base;&lt;BR /&gt;  cout&amp;lt;&amp;lt;"\n-----\n";&lt;BR /&gt;  cout&amp;lt;&amp;lt;"STACK\n";&lt;BR /&gt;  cout&amp;lt;&amp;lt;"-----\n";&lt;BR /&gt;  while(curr2!=NULL)&lt;BR /&gt;  {&lt;BR /&gt;   cout&amp;lt;&amp;lt;" |"&amp;lt;&lt;CURR2-&gt;value&amp;lt;&amp;lt;"|\n";&lt;BR /&gt;   curr2=curr2-&amp;gt;next;&lt;BR /&gt;  }&lt;BR /&gt;}// print the stack&lt;BR /&gt;&lt;BR /&gt;void stack::printStackMenu()&lt;BR /&gt;{&lt;BR /&gt;cout&amp;lt;&amp;lt;"Welcome to Stack \n";&lt;BR /&gt;cout&amp;lt;&amp;lt;"1.Push an element\n";&lt;BR /&gt;cout&amp;lt;&amp;lt;"2.Pop an element\n";&lt;BR /&gt;cout&amp;lt;&amp;lt;"3.Display Stack\n";&lt;BR /&gt;cout&amp;lt;&amp;lt;"4.Size Of Stack\n";&lt;BR /&gt;cout&amp;lt;&amp;lt;"5.Exit\n";&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;void main()&lt;BR /&gt;{&lt;BR /&gt;stack st;&lt;BR /&gt;char Option=0;&lt;BR /&gt;int val;&lt;BR /&gt; while(1)&lt;BR /&gt; {&lt;BR /&gt;  st.printStackMenu();&lt;BR /&gt;  cin&amp;gt;&amp;gt;Option;&lt;BR /&gt;   switch(Option)&lt;BR /&gt;   {&lt;BR /&gt;   case '1':&lt;BR /&gt;     cout&amp;lt;&amp;lt;"Enter a Number \n";&lt;BR /&gt;     cin&amp;gt;&amp;gt;val;&lt;BR /&gt;     st.push(val,st.current);&lt;BR /&gt;     break;&lt;BR /&gt;   case '2':&lt;BR /&gt;     st.pop();&lt;BR /&gt;     break;&lt;BR /&gt;&lt;BR /&gt;   case '3':&lt;BR /&gt;     st.printStackElements(st.current);&lt;BR /&gt;     break;&lt;BR /&gt;&lt;BR /&gt;   case '4':&lt;BR /&gt;     st.printStackSize();&lt;BR /&gt;    &lt;BR /&gt;     break;&lt;BR /&gt;   case '5':&lt;BR /&gt;     exit(0);&lt;BR /&gt;     break;&lt;BR /&gt;   }&lt;BR /&gt; }&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/CURR2-&gt;&lt;/CURRENT-&gt;&lt;/STDLIB.H&gt;&lt;/IOSTREAM.H&gt;&lt;/CONIO.H&gt;&lt;/STDIO.H&gt;&lt;/CURR2-&gt;&lt;/IOSTREAM.H&gt;&lt;/IOSTREAM.H&gt;</description>
      <pubDate>Sun, 13 Sep 2009 07:00:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/implementing-stack-and-lucas-series-in-c/m-p/5198566#M680660</guid>
      <dc:creator>Srekandan CR</dc:creator>
      <dc:date>2009-09-13T07:00:41Z</dc:date>
    </item>
    <item>
      <title>Re: Implementing stack and Lucas series in C++</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/implementing-stack-and-lucas-series-in-c/m-p/5198567#M680661</link>
      <description>-</description>
      <pubDate>Sun, 13 Sep 2009 07:02:30 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/implementing-stack-and-lucas-series-in-c/m-p/5198567#M680661</guid>
      <dc:creator>Srekandan CR</dc:creator>
      <dc:date>2009-09-13T07:02:30Z</dc:date>
    </item>
  </channel>
</rss>

