Search:

Type: Posts; User: RBCC

Search: Search took 0.01 seconds.

  1. Replies
    31
    Views
    15,914

    I learn by seeing and assimilation of a concept. ...

    I learn by seeing and assimilation of a concept. I was trying to get someone to write a code that I learn how to add, delete,search,find the minimum and list the data in a linked list. Well...
  2. Replies
    31
    Views
    15,914

    thank you very much all

    thank you very much all
  3. Replies
    31
    Views
    15,914

    Please correct it

    pLEASE Correct it. Thank you!

    John
  4. Replies
    31
    Views
    15,914

    quzah: this should be: ...

    quzah:

    this should be:



    while(current->next != NULL)
    {
    if (strcmp( current->fname,head->fname))<0
    {
  5. Replies
    31
    Views
    15,914

    struct *Iterate (struct name *head) { int...

    struct *Iterate (struct name *head)
    {
    int count =0;
    struct node *current=head;
    while (current !=NULL)
    {
    if (strcmp( current->fname,head->fname))<0
    {
    return...
  6. Replies
    31
    Views
    15,914

    Something Like this: struct *Iterate...

    Something Like this:



    struct *Iterate (struct name *head)
    {
    int count =0;
    struct node *current=head;
    while (current !=NULL)
    {
  7. Replies
    31
    Views
    15,914

    can you show the code on how to walk thru a...

    can you show the code on how to walk thru a linked list? I am a noob very basic code please! John
  8. Replies
    31
    Views
    15,914

    Here's what I have for an array: int main ()...

    Here's what I have for an array:


    int main ()
    {

    int icounter=0;
    int array[10]={12,34,2,3,90,34,56,100,6}
    int min=a[0];
  9. Replies
    31
    Views
    15,914

    person * minimum (struct people *list) { ...

    person * minimum (struct people *list)
    {
    person *min;
    while (list !=NULL)
    {
    if (strcmp(min->fname, list->fname)<0)
    {
    return min;
    }
    }
  10. Replies
    31
    Views
    15,914

    code time.

    could show me the full code?

    using this:




    people * minimum (struct name *people)
    {
    people person *min, *current;
  11. Replies
    31
    Views
    15,914

    What is 'min' as compared to these names? Are you...

    What is 'min' as compared to these names? Are you trying to return one name, or two?
    I am trying to return 2 strings (first and last of the smallest). With a return statement at the end


    Or...
  12. Replies
    31
    Views
    15,914

    If i wanted a character string to come back to...

    If i wanted a character string to come back to set equal to min then?
  13. Replies
    31
    Views
    15,914

    Bayint Naung: What would I return? John

    Bayint Naung:

    What would I return?

    John
  14. Replies
    31
    Views
    15,914

    Minimum element value of a linked list

    I am working through C in linked lists. I have been stumped on these two things. I have a structure that resembles :




    typedef struct name
    {
    char *first;
    ...
  15. Replies
    8
    Views
    4,918

    Double Linked Lists

    I am trying to develope a double linked list with the following structure that allows you to add, delete, move and sort using a selection sort.

    This is the structure I use:


    typedef struct...
  16. Replies
    1
    Views
    908

    Windows 7 Books help.

    Is there a book out that says how to use c to willing to live with TESTSIGNing
    enabled for everything in Windows 7 and then disable it. OR TESTSIGNing on selective files? Such as NTOSKRNL.exe? ...
  17. Thread: Difference?

    by RBCC
    Replies
    5
    Views
    1,013

    Difference?

    What is the difference in this line:


    while( c<10)
    {

    c++;
    }

    And
Results 1 to 17 of 17