Search:

Type: Posts; User: null

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    1,667

    also you might wanna take a look at numerical...

    also you might wanna take a look at numerical recipes book:

    http://lib-www.lanl.gov/numerical/index.html

    not exactly algorithm but sort of...

    regards,

    null
  2. Replies
    1
    Views
    1,041

    using VB for forms + vcc for processing

    hello,

    i've very recently started learning visual programming with MFC. It seems that making forms in vcc is a bit of a pain, at least compared to borland c++ builder...

    i've heard some people...
  3. Thread: fread / fwrite

    by null
    Replies
    2
    Views
    4,313

    Salem, you are DA MAN!!! what a great answer!...

    Salem, you are DA MAN!!!

    what a great answer! just says it all. To tell you the truth, when i posted i didn't think there'd be a fix to the problem.

    found the function you said in msdn. I'll do...
  4. Thread: fread / fwrite

    by null
    Replies
    2
    Views
    4,313

    fread / fwrite

    hi,

    i'm trying to do some fast text processing on files, and it seems that the bottleneck in terms of speed is reading and writting to the file.

    the processing is very fast. is there any way...
  5. Replies
    6
    Views
    2,475

    thanks for the help guys...and sorry for late...

    thanks for the help guys...and sorry for late reply.


    null
  6. Replies
    6
    Views
    2,475

    register variables

    hi,

    when using the register keyword, the variable is stored in the cpu.....

    does anyone know how many register variables you can have in a function? assuming x86 architecture...

    Thanks
    ...
  7. Replies
    1
    Views
    4,159

    The configuration files in unix are in the /etc ,...

    The configuration files in unix are in the /etc , /etc/rc directories usually.

    Appart from unix itself rc files, which usually follow some convension, applications do their own thing half the time.
  8. Replies
    5
    Views
    1,876

    lol... yes, that was very obvious...sorry...

    lol...

    yes, that was very obvious...sorry man...and thanks for replying


    null
  9. About Unix Programming - Making a career desision

    Are there any people here that are programming on any unix clones proffesionaly? ie making a living out of it?

    I will describe my problem to you and hope for answers, espesially from professional...
  10. Replies
    5
    Views
    1,876

    hi Salem, thanks for the example. just a couple...

    hi Salem, thanks for the example. just a couple of questions on it...the:

    while ( (val=va_arg(ap,int)) != 0 )

    is it automaticaly incremented (to point to the next argument) ?

    also all the:...
  11. Replies
    5
    Views
    1,876

    variable-length argument list ???

    hi, i heard it's possible to do functions with variable-length argument list. is that true? if so, where can i find more info about it?

    i mean, how are they prototyped etc

    thanx

    null
  12. Replies
    7
    Views
    1,720

    maybe try getting the input as string, then take...

    maybe try getting the input as string, then take the string and check each char of it if it is ok. if yes do an atof(...) to convert to float...

    is that what you are trying to do?
  13. Replies
    1
    Views
    1,472

    Unix programming -- help

    hello, well this is a bit difficult question...

    if you know c programming, and some theory of OS workings, how can you make the transition into kernel programming etc?

    in general, i find it a...
  14. Replies
    4
    Views
    6,028

    There is much of what you are looking for in: ...

    There is much of what you are looking for in:

    www.harmony-central.com

    look in the software and computer sections...


    null
  15. Thread: Memory size

    by null
    Replies
    4
    Views
    1,947

    ok man. here is your info: Memory Management...

    ok man. here is your info:

    Memory Management Structures
    ========================
    http://msdn.microsoft.com/library/default.asp?url=/library/en-us/memory/memman_2rw3.asp

    hope it helps.

    take...
  16. Replies
    4
    Views
    1,611

    hi again. here are some links for you, seems what...

    hi again. here are some links for you, seems what you looking for...

    HOWTO: Make C DLL More Accessible to VB with a Type Library
    http://support.microsoft.com/support/kb/articles/Q189/1/33.ASP
    ...
  17. Thread: Memory size

    by null
    Replies
    4
    Views
    1,947

    yep, it's all windows api. check the msdn, there...

    yep, it's all windows api. check the msdn, there is an article on how windows handle virtual memory. there is an article about it.

    the way it's done is that there is an api function and a...
  18. Replies
    4
    Views
    1,611

    damn, i've seen an article on this on the web but...

    damn, i've seen an article on this on the web but cant remember where it is...

    make a search at www.codeguru.com it's probably around there. also, in the same site, check the discussion boards...
  19. Replies
    6
    Views
    2,439

    yea. i've heard that Petzold's stuff is bible for...

    yea. i've heard that Petzold's stuff is bible for api. btw, have you tried mfc at all? you still have to use a lot of api there but it's a bit more user-friendly...
  20. Thread: Dll?

    by null
    Replies
    10
    Views
    1,659

    hi no-one. once i made a dll in vcc (cant...

    hi no-one. once i made a dll in vcc (cant remember now) but i remember there was a defs file involved. do you need that?

    it seems that there are many different ways of doing dll, or i got it all...
  21. Replies
    10
    Views
    2,709

    Salem, once again thank you for your answer....

    Salem, once again thank you for your answer. that's all i wanted to know about if (for the moment...) :-)

    pinko_liberal, yes you got to do that. first goes the array of pointers and then the...
  22. Replies
    5
    Views
    1,904

    traping leaking memory

    hi again. again on the subject of dynamic memory allocation for arrays of strings, or whatever, is there any c function or any other way in general that catches memory leaks or tell how much mem is...
  23. Replies
    10
    Views
    2,709

    Sebastiani, see what you mean. do you know, if...

    Sebastiani, see what you mean. do you know, if you call a function say func2() from whithin funct1(), is there any difference between calling func2() by name and calling func2() through a pointer to...
  24. Replies
    3
    Views
    1,481

    hi zen. thanx for the info. i'm looking into it...

    hi zen. thanx for the info. i'm looking into it now...

    found a cool link if anyone cares:

    http://www.newty.de/CCPP/FPT/em_fpt.html

    or

    http://www.function-pointer.org/
  25. Thread: Array of strings

    by null
    Replies
    18
    Views
    2,797

    larry, i was just asking people of this thread or...

    larry, i was just asking people of this thread or whoever if it's still used or not so i stop use it if it's not necessary.

    wasnt meaning that you have to use it or that you forgot it or anything...
Results 1 to 25 of 32
Page 1 of 2 1 2