CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: racerday182

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    6,168

    Re: Optimization Problem

    Hi BioPhysEngr,

    I dont think that is the solution I was looking for regarding this problem. I believe a graphing algorithm such as BFS or DFS is supposed to be used to implement the solution to...
  2. Replies
    3
    Views
    6,168

    Optimization Problem

    Consider a group of n robots, and m tasks. Tasks can be different and robots are specialized, hence a given robot can only perform certain tasks. For each robot, you are given a list of tasks that...
  3. Replies
    3
    Views
    4,924

    Re: Resizing Form help needed!

    No, it's not like that.

    Let me clarify, my form expands normally just like any window would if you hit the maximize button at the top right hand corner. BUT, in this case, hitting maximize only...
  4. Replies
    3
    Views
    4,924

    Resizing Form help needed!

    How do you make a form resize with the Window in a program? Currently, hitting maximize on a window makes the window expand but the form stays the same size.

    I am not very familiar with C# but I...
  5. Re: How do I print out a byte array as a string?

    Well, basically I have an array as such:
    unsigned char input[64];
    and I am reading in lines of 64 bytes from a file and storing the line in input using fread. Now, I want to print out what is...
  6. Re: How do I print out a byte array as a string?

    input[length] = 0;
    printf("%s",(char*)input);


    thanks for the help lindley but the code above is printing out the hex values of what is in the array whereas I have an array of hex values and I...
  7. How do I print out a byte array as a string?

    Hey guys,
    I am having problems printing out the string conversion value for an array of bytes. How do I do this?

    My code so far looks like this:
    int p=0;
    while (p < sizeof(input))
    {...
  8. Replies
    1
    Views
    5,301

    Packets C Programming Question

    Any HELP would be greatly appreciated. THANKSSSS

    Objective:
    Given the name of a binary file, which contains a series of 256-byte packets (or blocks),
    your program will read in and check each...
Results 1 to 8 of 8





Click Here to Expand Forum to Full Width

Featured