Search:

Type: Posts; User: jim_0

Page 1 of 5 1 2 3 4

Search: Search took 0.01 seconds.

  1. Try code::blocks. Code::Blocks...

    Try code::blocks.

    Code::Blocks
  2. It looks like you have some configuration...

    It looks like you have some configuration conflict, you are using two different drives(or partitions) and there is a conflict somewhere.

    Have you heard of Microsoft Visual Studio, it's is a...
  3. Replies
    3
    Views
    900

    Project> Project Option> Directories> include...

    Project> Project Option> Directories> include Directories

    Then click the search button, which opens the, 'Browse for folder' dialog.

    Find the directory that has ida.hpp, "C: \ IDA \ idasdk66 \...
  4. Thread: C++ coding

    by jim_0
    Replies
    2
    Views
    586

    Well you will need to be pretty good at C++...

    Well you will need to be pretty good at C++ first, so how is that?
  5. Replies
    7
    Views
    916

    You can use the win32 api. It may seem a bit...

    You can use the win32 api. It may seem a bit daunting at first but it's really not to difficult to use.
  6. Replies
    9
    Views
    874

    You also need some conditions to to end the...

    You also need some conditions to to end the recursive loop otherwise it will never end, and also hang your PC. It's not the best series to do recursion with, are you sure it needs to be recursive?
  7. Replies
    2
    Views
    824

    The only way you could do that is if you were...

    The only way you could do that is if you were writing to the file line by line, then you could check to see if any line contained no data and skip if so. If you are dumping a chuck of data to a...
  8. Replies
    4
    Views
    2,082

    Well have you tried it to see if the compiler...

    Well have you tried it to see if the compiler throw up an error?
  9. Replies
    6
    Views
    1,435

    Where are the bad reviews?

    Where are the bad reviews?
  10. Replies
    12
    Views
    2,724

    I think I am getting some of this. The...

    I think I am getting some of this. The (simplistic) way I see it is, you have a frame buffer(memory on the GPU) this is the final stage before the data is sent to the screen.

    The FB will have a...
  11. Replies
    12
    Views
    2,724

    So your saying there are certain memory mapped...

    So your saying there are certain memory mapped locations and when you write to them they triigger some hardware event, in other words, they send data to the GPU. These seems to be 0xB8000 and...
  12. Replies
    12
    Views
    2,724

    But that's the point, what is a device context,...

    But that's the point, what is a device context, what language was it written in, also drawing functions. There are no drawing function in C/C++, yes there are in the WIN32 API however how can API...
  13. Replies
    11
    Views
    1,205

    I would recommend reading some books like Master...

    I would recommend reading some books like Master of Doom, or follow John Carmack on Twitter and plenty other books and people to follow also. These guys will constantly tell you that they are still...
  14. Replies
    12
    Views
    2,724

    Creating graphics from scratch

    I am trying to work out how you do this from first programming principles. I know you have DX and GL and API's like the WIN32 API.

    However what is going on behind the scenes with these API's. For...
  15. Thread: Simple Question

    by jim_0
    Replies
    7
    Views
    775

    A bit patronising the way your put that, you...

    A bit patronising the way your put that, you could clearly see they meant i and not I.
  16. #include #include using...

    #include <string>
    #include <iostream>
    using namespace std;

    string text(){
    return "Example\n";
    }
    int main(int argc, char* argv[])
    {
    cout << text();
  17. Replies
    3
    Views
    557

    Looks like a good start, no source files though?

    Looks like a good start, no source files though?
  18. Replies
    33
    Views
    3,904

    Sorry I see what you mean about the byte size, I...

    Sorry I see what you mean about the byte size, I just took a 4 bit byte as an example, you can other sizes but the standard is 8 bits nowadays.
  19. Replies
    33
    Views
    3,904

    I didn't say it wasn't implementation defined. As...

    I didn't say it wasn't implementation defined. As far as 8 bit bytes, Is a byte always 8 bits? - Stack Overflow
  20. Replies
    33
    Views
    3,904

    Word about ints/variables. Each variable type has...

    Word about ints/variables. Each variable type has a range of values that can be assigned to it, 4 byte integers range from –2,147,483,648 to 2,147,483,647. If you go over the max value then you get...
  21. Replies
    7
    Views
    4,587

    I will throw this in. There is no way to 100%...

    I will throw this in. There is no way to 100% make executable files unhackable, by probing memory or using hex editor or dissemblers a good hacker can always bypass checks such as DRM, passwords or...
  22. Replies
    5
    Views
    866

    You need a main() it tells the compiler where to...

    You need a main() it tells the compiler where to start (entry point)

    so


    int main(){

    //call you functions in here.
    return 0;
    }
  23. Have a look at vectors.

    Have a look at vectors.
  24. Replies
    11
    Views
    1,817

    You need to learn the fundamentals ASCII,...

    You need to learn the fundamentals ASCII, UNICODE, character sets. Binary ASCII is encoded according to the ASCII character set from 0-255, ASCII - Wikipedia, the free encyclopedia
  25. You could try some interview questions, plenty on...

    You could try some interview questions, plenty on google, as LL about algorithms, they will take you through core programing principles you would learn on a CS degree like data structures, lists,...
Results 1 to 25 of 107
Page 1 of 5 1 2 3 4