CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: terrorofdeath

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,471

    Re: having problems sorting a linklist

    do you guys know any algorithm visualization program for c++
  2. Replies
    5
    Views
    1,471

    Re: having problems sorting a linklist

    never mind i understand what is going with the code i used visual c++ and bloodshed to debug my program
  3. Replies
    5
    Views
    1,471

    having problems sorting a linklist

    i know how some parts of sorting linklist works but not all of it what does the rest of the code do



    #include <iostream>
    #include <math.h>

    using namespace std;

    struct linklist
  4. can someone please point out what im doing wrong

    im trying to create a class type structure using struct instead of classes i dont know what im doing wrong i have one working code and i have some thing
    else im working on.

    working


    #include...
  5. Re: how to properly use a function pointer to a particular function

    its a question
  6. how to properly use a function pointer to a particular function

    #include <iostream>

    using namespace std;

    int function(int a,int b)
    {
    return a + b;
    }

    bool function2(int a,int b)
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured