Search:

Type: Posts; User: devil@work

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    1,156

    class Base { public: void setNums(float,...

    class Base
    {
    public:
    void setNums(float, float);
    float a;
    float b;
    };
    should be
    class Base
    {
  2. Thread: Dns!!!

    by devil@work
    Replies
    6
    Views
    1,411

    read beej guide to network programming small and...

    read beej guide to network programming small and easy to understand. google will return in in the first place
  3. Thread: .LIB's

    by devil@work
    Replies
    4
    Views
    1,081

    thats the point you are writhe but if they are...

    thats the point you are writhe but if they are written for a diffrent os you have no choice it like putting a mustang engine in to a aircraft and say both are engines i dont have to know how diffrent...
  4. Replies
    27
    Views
    3,113

    if you are under linux console try this...

    if you are under linux console try this ./executablename >dumpfile and you will have all the output send to dumpfile
  5. Replies
    9
    Views
    4,116

    did you try to use another compiler and see what...

    did you try to use another compiler and see what happens maybe you compiler add something to optimize the code?
  6. Replies
    3
    Views
    10,186

    do you mean declearing a word like a int ? if so...

    do you mean declearing a word like a int ? if so it is not possible cause int and other number types has fixed sizes but word dont have fixed sizes so use a string you cant define one.
  7. std::cout

    std::cout<<"\nDo you want to quit? (Y)es or (N)o?";
    std::cin >> temp;

    if(temp == 'n' || temp == 'N')
    done = false;
    else if(temp == 'y' || temp == 'Y')
    done = true;
    else
    {
    std::cout <<...
  8. Replies
    8
    Views
    987

    it doesnt need to be const but since it doesnt...

    it doesnt need to be const but since it doesnt change anything and just copy something to something it is better to make it const to avoid any error that we make.
  9. Replies
    33
    Views
    5,359

    gcc 3.2

    gcc 3.2
  10. first of all get rid of all the define lines they...

    first of all get rid of all the define lines they are not needed.
    you dont need if (choice==TWELVE) statement it is going to terminate anyway.then no need for braces in case statements
  11. Replies
    24
    Views
    4,911

    cool

    cool
  12. Replies
    0
    Views
    901

    looking for a book on database...

    looking for a book on database programming not SQL i mean creating a simple database from the beginning design features and other things
  13. Replies
    14
    Views
    2,518

    i do not use windows thats why i am not into...

    i do not use windows thats why i am not into windows programming i use linux i got a search engine project that i have been working in php guess i am going to port it to c++ some socket programming...
  14. Replies
    2
    Views
    930

    are there any c++ classes for network?

    i read the beej guide to network programming but it is c based are there any c++ lib for network connections?
  15. Replies
    14
    Views
    2,518

    i am not into windows programming i havent used...

    i am not into windows programming i havent used it for years and not planing to use it.
  16. Replies
    14
    Views
    2,518

    how to improve my skills..

    i just finished my first book on c++ learn c++ in 21 day what do you suggest to improve my skill and please do not write write programs.what did you do?
  17. Replies
    4
    Views
    1,667

    creating big projects

    i never wrote a big project but i am starting now :) but the problem is how do you wrote your projects i want to have a main menu and sub menus all do diffrent jobs but if i make a one big file and a...
  18. in linux?

    in linux?
  19. how can i get the tim covered in between 2 or more statements?

    how can i get the tim covered in between 2 or more statements?
  20. Replies
    3
    Views
    2,738

    i just had the same question you have to add a \n...

    i just had the same question you have to add a \n to the end search my treads same question answered
  21. Replies
    3
    Views
    1,253

    is there another function that i can use with...

    is there another function that i can use with iostream
  22. Replies
    6
    Views
    1,108

    i post this before posting the one with get

    i post this before posting the one with get
  23. Replies
    3
    Views
    1,253

    executing a statement

    i have to get a url from the terminal and place it in the sql query below but how?


    mysql_query(conn,"SELECT site_id FROM sites WHERE site_url like '$url'");

    because of the " " i cant place...
  24. thx every one \n solved my problem

    thx every one \n solved my problem
  25. why cant i get a responce from the server?

    i cant get response from server program just stalls.


    #include <stdio.h>
    #include <stdlib.h>
    #include <errno.h>
    #include <unistd.h>
    #include <string.h>
    #include <netdb.h>
    #include...
Results 1 to 25 of 33
Page 1 of 2 1 2