Search:

Type: Posts; User: transgalactic2

Page 1 of 20 1 2 3 4

Search: Search took 0.03 seconds.

  1. &arr[0]=&(*arr)=arr &* cancel each other

    &arr[0]=&(*arr)=arr
    &* cancel each other
  2. Replies
    18
    Views
    3,695

    if you are reading from a file then just use...

    if you are reading from a file
    then just use fscanf and then but to linked list like i told you
  3. Replies
    5
    Views
    1,362

    its easy you use len not as the length but as the...

    its easy you use len not as the length but as the number of cells in each subset

    i is allways the middle of lenso the left x(arr+1,len-i)
    and for right x(arr+i+1,i)
  4. so you want to replace "abc" by "z" in each...

    so you want to replace "abc" by "z" in each string.
    i would build a char* function which returns the end of "abc" in the string (it whould return to str3)

    str1=abcddddddeeeffffff
    and then i...
  5. Replies
    3
    Views
    1,195

    soif i understand you correctly you just have a...

    soif i understand you correctly you just have a menu
    and you enter customers data
    and you want to keep the data after you end the function.

    if its true

    then i would used linked list
    do a...
  6. Replies
    4
    Views
    11,605

    so you are given a string like this one "x-5=0"...

    so you are given a string like this one
    "x-5=0"

    and you want to solve it?
    i couldnt understand in details what is your goal?
  7. Replies
    18
    Views
    3,695

    "I also have another question, when I am passing...

    "I also have another question, when I am passing linked list to the function and when I need to loop through it or somthing else.....does it always start from a first node ...head or I need to tell...
  8. Replies
    8
    Views
    1,051

    but these have a different algorithm. i have it...

    but these have a different algorithm.
    i have it on the tip of my tongue.
    the answer is
    we have two groups
    and in those two groups we have a common numbers
    so when we what to find the total...
  9. Replies
    8
    Views
    1,051

    no its not working like that. i told you what...

    no its not working like that.
    i told you what the last part is about
    but i dont know when it happens
  10. Replies
    8
    Views
    1,051

    nope you havent me how?

    nope you havent me how?
  11. Replies
    8
    Views
    1,051

    fill the gaps question..

    i am given two bst trees
    fill the gaps so it will return the number nodes which are equal in both trees



    typedef struct Node{
    int Val;
    struct Node *Left, *Right;
    } Node;
  12. Replies
    4
    Views
    2,402

    fill the gaps question..

    the following function gets as an argument two sorted linked lists
    which are sorted by value in ascending order.
    there may be nodes with equal value variable in them.

    the function merges both...
  13. so what specifier to use for a double variable...

    so what specifier to use for a double variable
    if i want two places after a point proximity
  14. i need two digit approximation float is only one...

    i need two digit approximation
    float is only one digit after the point
    and why you wrote %lf
    ?



    double entered_val;
    sscanf(str,"%f", &entered_val);
  15. sscanf(str,"%5f",&fl); correct fl is float or...

    sscanf(str,"%5f",&fl);

    correct
    fl is float or
    long float or something
    ?
  16. is there a problem in this method of casting?

    i want to cast "55.77" which is a string to 55.77 which is a float

    sscanf(str,"%5f",fl);

    fl will hold 55.77
    correct?
  17. Replies
    15
    Views
    5,276

    i dont have any assignment i need to...

    i dont have any assignment

    i need to understand the subset recursive algorithm

    and i didnt find it i good
    and its not pointless
  18. Replies
    15
    Views
    5,276

    this is not a pointless question

    this is not a pointless question
  19. Replies
    15
    Views
    5,276

    ??????????

    ??????????
  20. Replies
    15
    Views
    5,276

    subset recursive algorithm

    i cant find the general algorithm for recursive subset
    on google
    ??
  21. Replies
    0
    Views
    1,451

    subsets filling the gaps question..

    i need to complete the following structure so
    it will print all the str strings in length n,that follows ththe following rules:
    A.the strings have only a,b,c chars
    B.a string could not have two...
  22. Replies
    2
    Views
    3,999

    linked list fill the gaps question..

    i have a struct


    typedef struct item{
    int number; //the number
    int occur; // the number of ocuurances of this number
    struct item *next;
    }item;

    i need to compete the gaps of the...
  23. Replies
    25
    Views
    2,952

    actually the big break threw came after ...

    actually the big break threw came after
    KCfromNC 's post

    i just need to know in general
    about each part
    like he did

    (regarding the void main its working purfectly well
    and its a question...
  24. Replies
    25
    Views
    2,952

    is it correct? #include #include...

    is it correct?


    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>

    typedef struct wordStruct{
    char string[256];
    struct wordStruct *next;
  25. Replies
    25
    Views
    2,952

    the this part is harder #include ...

    the this part is harder


    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>

    typedef struct wordStruct{
    char string[256];
    struct wordStruct *next;
Results 1 to 25 of 500
Page 1 of 20 1 2 3 4