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

Search:

Type: Posts; User: bluecoder

Search: Search took 0.03 seconds.

  1. Replies
    16
    Views
    5,384

    Re: Filling an array with unique numbers

    why such complicated code...


    for (int j = 0;j<30;j++)
    {
    i = rand() % 101;
    if (i != i-1)
    array[j]=i;
    else
    {
  2. Replies
    6
    Views
    857

    Re: Question about char pointer arrays

    Array[0] points the address of the first character of the string .
  3. Thread: Arrays

    by bluecoder
    Replies
    16
    Views
    1,260

    Re: Arrays

    What do you exactly want to do ?
  4. Re: Set Covering : Runtime hang\error at function call in c

    Hi , you have not given the complete code as
    set_intersection(intersection,((Spst *)(member->data))->st,skill_list);
    function what it do we dont know ..infact i am not getting the idea about...
  5. Replies
    16
    Views
    5,384

    Re: Filling an array with unique numbers

    This is good function unique ...thanks
  6. Replies
    16
    Views
    5,384

    Re: Filling an array with unique numbers

    This is good function unique
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured