Search:

Type: Posts; User: Once-ler2

Page 1 of 2 1 2

Search: Search took 0.00 seconds.

  1. Replies
    11
    Views
    1,569

    It is precompilation standard C code is what it...

    It is precompilation standard C code is what it should generate I am envisioning switch case statements (every ten iterations) within switch case statements(every one hundred iterations). I hope that...
  2. Replies
    11
    Views
    1,569

    yes I am stuck, I can't go into specifics because...

    yes I am stuck, I can't go into specifics because it is an encryption program but I need a program that will generate the source code for a very large number of possibilities all switch case embedded...
  3. Replies
    11
    Views
    1,569

    no I am not trying to change the exe I am trying...

    no I am not trying to change the exe I am trying to make a program which in turn writes a much bigger program(source file that is) which is impossible for a human to write
  4. Replies
    11
    Views
    1,569

    I want it to take a very large program from a...

    I want it to take a very large program from a small file write program.
    for instance one of the case statements could be if
    counter =30 then " case 30 {fwrite pfile printf(this is number 30);}
  5. Replies
    11
    Views
    1,569

    how do I get my program to write itself?

    For instance


    int counter;
    counter =0;
    FILE *pfile;
    pfile= fopen("g:\\myprog.txt" "w");
    while (counter >100)
    { fprintf (case counter{something})};
  6. I am writing using code blocks with the built in...

    I am writing using code blocks with the built in compiler in W7
    but I plan to port it to Debian and OSX as well
  7. are there any books on how to multithread in C non OS specific?

    I am writing a program, the trouble is is that it uses a single thread and is SLOW.
  8. If fread and fwrite do not work on 64bit values then what can I use?

    I am confused.
  9. Are there any good books on intermediate C? All I find are beginners books

    perhaps the name of a textbook that is good or any sort of book.
    The books I have gotten are either beginner books or expert books.
    Thanks
  10. thanks every body. I did not know that you could...

    thanks every body.
    I did not know that you could have multiple file opens(I thought that you could only open it once.
  11. The disk is not the problem the problem is that...

    The disk is not the problem the problem is that the encode takes forever and I was hoping to speed it up with more threads
  12. parallel processing on files that is

    parallel processing on files that is
  13. how can I have multiple reads from the same file?

    I am attempting to break up a file into smaller chunks and have it process the different parts of the file in parallel to speed up the entire process. I was thinking maybe 4 chunks at a time. How do...
  14. Where can I find some C source for segmented...

    Where can I find some C source for segmented downloading? I am really interested to see how this actually works. Surely there must be some source out there, so far google has turned up a bunch of...
  15. Where can I find information about segmented downloading?

    I am wanting to do segmented video encoding and thought that this would be a good thing to look up. I mean if download managers can put the file together exactly as it is supposed to be shouldn't I...
  16. Thanks you guys.

    Thanks you guys.
  17. I cannot edit my posts or reply(just quick reply)

    I cannot edit my posts or reply(just quick reply)
  18. Why is this not working?

    Why is this not working?
  19. it is not letting me edit my post it should be ...

    it is not letting me edit my post it should be
    #include int main () { FILE * pfile; unsigned long long bytesremaining =0; unsigned long long remain = 0; char name[150] = ""; ...
  20. Why does my while >0 go past it into negative numbers?

    #include int main () { FILE * pfile; unsigned long long bytesremaining =0; unsigned long long remain = 0; char name[150] = ""; printf("enter the file name and path\n"); ...
  21. I was hoping to be able to code for all of them

    I was hoping to be able to code for all of them
  22. How can my program find out how many cores/threads a computer has?

    I want to make a program that checks the computer and finds out how many threads it can process simultaneously and use that information to alter my program so that it processes the maximum number of...
  23. What does -> mean and is there a

    what's an example code? I am confused, I took a break from studying and now I can't seem to remember anything much. Thanks
  24. But how do I take some from the beginning and...

    But how do I take some from the beginning and insert the new ones at the end and then read some more from the beginning and not read it off the end? And I am comfortable using pointers, I am not...
  25. Can someone please tell me an example of this? FIFO buffer in 9 bytes.

    I need to read in an x number of bytes where x= 1-9 bytes like say I have a number 123456789 if I take 4 bytes off that then the end gets filled with bytes to read 56789,10 , 11, 12, 13 How would I...
Results 1 to 25 of 27
Page 1 of 2 1 2