Sponsored Links


Results 1 to 3 of 3

Thread: In file included from C:/Dev-Cpp/include/c++/3.4.2/backward/iostream.h:31, from C:\Do

  1. #1
    sana.pari
    Guest

    Bebo 32 In file included from C:/Dev-Cpp/include/c++/3.4.2/backward/iostream.h:31, from C:\Do

    Sponsored Links1


    Aoa Respected sir Sir after writing any program when i want 2 compile it i receive these three errors on every program Kindly tell me how 2 remove it ..... I shall be V.Thankful 2 you ... 1:- In file included from C:/Dev-Cpp/include/c++/3.4.2/backward/iostream.h:31, from C:\Documents and Settings\Hafiz\My Documents\Untitled1.cpp 2:- From C:\Documents and Settings\Hafiz\My Documents\Untitled1.cpp 3:- #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the header for the header for C++ includes, or instead of the deprecated header . To disable this warning use -Wno-deprecated.

    Sponsored Links

  2. #2
    Dear student!
    Your program is missing with some header files. Include these headers your program will definately run or send me your code i will tell you the missing headres.

  3. #3
    Junior Member
    Join Date
    May 2010
    Posts
    2

    NEW

    ****/here is the code/****



    #include <iostream.h>
    #include <stdlib.h>

    /* The Node class */
    class Node
    {
    public:
    int get() { return object; };
    void set(int object) { this->object = object; };

    Node * getNext() { return nextNode; };
    void setNext(Node * nextNode) { this->nextNode = nextNode; };

    private:
    int object;
    Node * nextNode;
    };

    /* The List class */
    class List
    {
    public:
    List();
    void add (int addObject);
    int get();
    bool next();
    friend void traverse(List list);
    friend List addNodes();

    private:
    int size;
    Node * headNode;
    Node * currentNode;
    Node * lastCurrentNode;

    };
    /* Constructor */
    List::List()
    {
    headNode = new Node();
    headNode->setNext(NULL);
    currentNode = NULL;
    lastCurrentNode = NULL;
    size = 0;
    }

    /* add() class method */
    void List::add (int addObject)
    {
    Node * newNode = new Node();
    newNode->set(addObject);
    if( currentNode != NULL )
    {
    newNode->setNext(currentNode->getNext());
    currentNode->setNext( newNode );
    lastCurrentNode = currentNode;
    currentNode = newNode;
    }
    else
    {
    newNode->setNext(NULL);
    headNode->setNext(newNode);
    lastCurrentNode = headNode;
    currentNode = newNode;
    }
    size ++;
    }

    /* get() class method */
    int List::get()
    {
    if (currentNode != NULL)
    return currentNode->get();
    }

    /* next() class method */
    bool List::next()
    {
    if (currentNode == NULL) return false;

    lastCurrentNode = currentNode;
    currentNode = currentNode->getNext();
    if (currentNode == NULL || size == 0)
    return false;
    else
    return true;
    }

    /* Friend function to traverse linked list */
    void traverse(List list)
    {
    Node* savedCurrentNode = list.currentNode;
    list.currentNode = list.headNode;

    for(int i = 1; list.next(); i++)
    {
    cout << "\n Element " << i << " " << list.get();
    }
    list.currentNode = savedCurrentNode;
    }

    /* Friend function to add Nodes into the list */
    List addNodes()
    {
    List list;
    list.add(2);
    list.add(6);
    list.add(8);
    list.add(7);
    list.add(1);
    cout << "\n List size = " << list.size <<'\n';
    return list;
    }

    main()
    {
    List list = addNodes();
    traverse(list);
    }
    getch();

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 0
    Last Post: 04-09-2013, 02:02 AM
  2. Replies: 0
    Last Post: 05-02-2011, 06:45 PM
  3. #include where is this file?
    By sana.pari in forum C++ Programing
    Replies: 1
    Last Post: 04-24-2011, 07:08 PM
  4. Replies: 1
    Last Post: 04-24-2011, 06:03 PM
  5. Why we use iostream.h in our program?
    By Xpert in forum C++ Programing
    Replies: 0
    Last Post: 04-24-2011, 02:04 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
-: Vuhelp Disclaimer :-
None of the files shown here are hosted or transmitted by this server. The links are provided solely by this site's users. The administrator's or staff of Vuhelp.net cannot be held responsible for what its users post, or any other actions of its users. You may not use this site to distribute or download any material when you do not have the legal rights to do so. It is your own responsibility to adhere to these terms. If you have any doubts about legality of content or you have any suspicions, feel free to contact us.
Online Education | JhelumSoft