Search Result

Collapse
2 results in 0.0014 seconds.
Keywords
Members
Tags
dev-c++
  •  

  • What means expected unqualified-id before string constant on C++?

    Hi to everybody, I'm a learner of C++. I'll really appreciate if you can help me or teach me something.

    Thank you in advance.

    Code:
    #include<iostream>
    #include<string>
    
    int main()
    {
        std::cout << "Introduce your first name:";
        std::string name;
        std::cin >> name;
        
        //build the message that I intend to write.
        const
    ...
    See more | Go to post

  • roflmfao
    started a topic GRAPH.h from "Algorithms in C"
    in C

    GRAPH.h from "Algorithms in C"

    Hey, I recently bought "Algorithms in C" by Robert Sedgewick

    In his programms (Part 5) he refers to "graph.h"

    On the website, I found an ftp Server with those files on it:

    ftp://ftp.cs.princeton.edu/pub/cs226/map/c/

    Now, I downloaded graph.h, graph.c, point.h, point.c, pqindex.h, pqindex.c from there.

    I opened these in Dev-C++, and tried to compile "graph.c"...
    See more | Go to post
Working...