Search:

Type: Posts; User: lostmyshadow

Search: Search took 0.01 seconds.

  1. here is the correct solution: #include...

    here is the correct solution:


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

    typedef struct
    {
    char code[25]; // course code
  2. nevermind

    seems this worked


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

    /* function prototypes */
    void bubbleDescend(int *p,int length);
    void printAscend(int *p,int length);
  3. ok i changed the sort functions to a different...

    ok i changed the sort functions to a different type, why isnt this working?


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


    void bubbleDescend(int*,int);
    void...
  4. so what does that mean for the code, the delete...

    so what does that mean for the code, the delete function works fine its just adding to the beginning and the end im having trouble with
  5. ok i got a little farther, will somebody please...

    ok i got a little farther, will somebody please help me out, it would be greatly appreciated.


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


    void swap(void *e1, void *e2, size_t...
  6. Using unix command line to sort random array

    hey everyone I need to use the command line arguments -a and -d to sort a random array in ascending and descending order (respectively). I have the random number generator down but I have no idea how...
  7. Replies
    14
    Views
    5,894

    that looks fine, i meant do you have int...

    that looks fine, i meant do you have


    int main (void){

    int i
    return 0;
    }

    void myfunct (void)
  8. Replies
    14
    Views
    5,894

    I ran into that same problem but it seems that I...

    I ran into that same problem but it seems that I was erroneous in my coding in that I didn't put closing }'s on the main function, i use xcode 3.0
  9. help! Placement of nodes in a Linked List

    hey everyone I am creating a program that creates a linked list and the program has to have a menu to let the user 1.add to the beginning of the list. 2. add to the end of the list. 3. delete a...
  10. Replies
    12
    Views
    18,527

    but..

    that is helpful but that i what i am getting hung up on, how do i generate multiple words from the 7 digit phone number? I think both of those programs i posted are backwards. i think those are...
  11. Replies
    12
    Views
    18,527

    ok

    ok i put code tags around it
  12. Replies
    12
    Views
    18,527

    phone number to word conversion

    i have a couple codes that might work for the phone number to word conversion but i don't know how I would export these into a text file.



    #include <stdio.h>

    int main(void)
    {
    char...
  13. Replies
    12
    Views
    18,527

    Phone number to word conversion program

    I don't usually do this bc I can usually learn code from the internet but I am having trouble with this problem and I can't seem to find any help. Here it goes:
    Write a C program that, given a...
Results 1 to 13 of 13