Search:

Type: Posts; User: chaitanya

Search: Search took 0.01 seconds.

  1. Replies
    2
    Views
    6,138

    union of two arrays

    could any one help me to find the union of two sets.The process i did is that first i made two arrays and cancatenated the first array to the next array and compared each elements with all the other...
  2. Replies
    5
    Views
    1,272

    i think there is no answer for ur question. if...

    i think there is no answer for ur question.
    if u find any correct answer just reply to me please
  3. Replies
    10
    Views
    2,713

    yes i agree with u , that pointers in "C" r a ...

    yes i agree with u , that pointers in "C" r a bit confusing .

    The main thing to understand in pointers is that the difference between * and & .
    '*' means the value at address....
  4. Replies
    9
    Views
    1,879

    the main code is : for(i=1;i

    the main code is :
    for(i=1;i<=10;i++)
    {
    for(j=1;j<=i;j++)
    {
    printf("%d",i);
    }
    printf("\n");
    }
  5. tell me the difference between the following two...

    tell me the difference between the following two codes:

    1. i=3;
    i=++i*++i*++i;
    printf("%d",i);

    2. i=3,j;
    j=++i*++i*++i;
    ...
  6. Replies
    29
    Views
    7,253

    how can i send answers to the questions raised by...

    how can i send answers to the questions raised by others.
  7. could any one help me in understanding the concepts of recursive fns.

    i have a problem of understanding the recursive functions.I could not get the logic of implementing them correctly .
    I want to learn them because it is one of the most important concepts of...
  8. could any help me understanding the concepts of increment / decrement operators

    arial black


    Does increment and decrement operators acts same in all the cases or they vary in their behaviour .
Results 1 to 8 of 8