Search:

Type: Posts; User: orion-

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    6
    Views
    1,438

    why should you use a std::string insted of char...

    why should you use a std::string insted of char array in c++?
  2. Replies
    3
    Views
    901

    need help initializing a dynamic array

    correct this code for me please..


    int main()
    {
    const int max = 5;
    int *array = new int [max];
    array[max] = {23,43,65,45,67};
    return 0;
    }
  3. the copy i found on ebay is visual studio 2005...

    the copy i found on ebay is visual studio 2005 standard edition. whats academic?
  4. switch to visual studio 2005 or stick to dev-c++?

    right now im using dev-c++ compiler from bloodshed but i am thinking about switching to visual studio 2005. i found a copy of VS 05 on ebay for $60 and i am considering purchasing it. is it worth it...
  5. Thread: Speed of C++

    by orion-
    Replies
    64
    Views
    12,581

    everyone seems to be in favor of Java.

    everyone seems to be in favor of Java.
  6. Replies
    16
    Views
    4,288

    congratulations on popping the cherry!

    congratulations on popping the cherry!
  7. Replies
    15
    Views
    14,029

    whats wrong with java??

    whats wrong with java??
  8. Replies
    15
    Views
    14,029

    what language(s) was used to make windows xp?

    my friend said C, C++ and ASM were used to make windows xp. is he correct? i always it thought it was C# and Java....
  9. Replies
    5
    Views
    1,267

    how do you instill a library?

    i downloaded a math library from www.swox.com/gmp and i am not quite sure how to install it so i can use it in my applications. could someone tell me please? the compiler i am using is bloodshed...
  10. Replies
    2
    Views
    3,722

    turbo c++ video presentation

    look what i found on youtube! an old presentation about OOP C++ programming.

    http://www.youtube.com/watch?v=0pHYoc57qkA
  11. Do you have to be good at math to be good at C/C++?

    i want to get good at c++ but i am terrible with math. does this mean i will not become good at c++?
  12. Replies
    3
    Views
    5,890

    whats the difference between int and long?

    the value range between int and long are both the same (-2147483648 to 2147483647) and they are both 4 bytes big! whats the difference and when do i know which variable type to use between the two...
  13. Replies
    7
    Views
    9,620

    thx dragon, your my hero.

    thx dragon, your my hero.
  14. Replies
    7
    Views
    9,620

    but i would like to use 'char' insted of 'string'...

    but i would like to use 'char' insted of 'string' ...sorry i should've been alittle more specific in my first post.
  15. Replies
    7
    Views
    9,620

    an array of names (strings)

    how would i declare an array of namers? i would like to hold 10 names in one variable. how do i do that??
  16. Replies
    5
    Views
    1,396

    why not?

    why not?
  17. Replies
    17
    Views
    3,201

    im new to c/c++ programming and i havn't learned...

    im new to c/c++ programming and i havn't learned anything about pointers yet. im still trying to wrap my head around structures.
  18. Replies
    5
    Views
    1,396

    need some help with structures !

    why can't i pass an already declared string through to a structure?



    struct personInfo
    {
    char theName[21];
    int age;
    };
  19. thats a nice site! that girl sure knows her C/C++

    thats a nice site! that girl sure knows her C/C++
  20. why are you using turbo c/c++ compiler?? it is...

    why are you using turbo c/c++ compiler?? it is alittle bit out of date. i recommend trying dev-cpp from http://www.bloodshed.net/devcpp.html

    nice code though (i guess)
  21. Replies
    17
    Views
    3,201

    it compiles fine under dev-cpp & visual studio

    it compiles fine under dev-cpp & visual studio
  22. Replies
    17
    Views
    3,201

    #include void removeChar(char...

    #include <iostream>

    void removeChar(char *TheStr, char ch)
    {
    int len = strlen(TheStr), c = 0;
    char Temp1[len], Temp2[len];
    strcpy(Temp1,TheStr);
    for (int x = 0; x< len;...
  23. Replies
    11
    Views
    1,456

    i didn't use the STL. i made my very own function...

    i didn't use the STL. i made my very own function that returns the amount of times a certain character occurs within a string. it was actually quite easy (not to brag).
  24. Replies
    11
    Views
    1,456

    well one of my goals is to greaty familiarize...

    well one of my goals is to greaty familiarize myself with the C/C++ standard template library. but im just not sure how i should go about that...
  25. Replies
    11
    Views
    1,456

    what should i make now?

    i just started c++ about 2 weeks ago and ive made the following programs...

    hello world
    add,subtract,divide,multiply calculator
    my very own reverse a string function
    count how many times a...
Results 1 to 25 of 55
Page 1 of 3 1 2 3