Search:

Type: Posts; User: NavyBlue

Search: Search took 0.01 seconds.

  1. Replies
    10
    Views
    2,628

    Rollover links

    Hi, how do I create links that will change colors when I move the mouse over them?

    Thanks.
  2. Replies
    1
    Views
    2,446

    Quick Sort Help

    Hi, i'm having trouble running the quick sort function...here is my code...thanks




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

    #define arySize 100
  3. Replies
    4
    Views
    1,603

    Reading Text File

    A.Hill D.Lee W.Ang K.Ree
    E.Alexander B.Harvard A.Ericson

    I'm trying to get the above lines from the file. I want to read the student names of each line with one variable. I want to return...
  4. Replies
    1
    Views
    1,823

    Saving ASCII code

    How do i save the ASCII value? I'm trying to add the ASCII value for each character in a string.
  5. Thread: Strlen

    by NavyBlue
    Replies
    7
    Views
    2,971

    Strlen

    How do I find the number of alphanumeric in a string?
  6. Thread: Header Node

    by NavyBlue
    Replies
    5
    Views
    3,493

    Where do I put the link from the header node to...

    Where do I put the link from the header node to the first node?
  7. Thread: Header Node

    by NavyBlue
    Replies
    5
    Views
    3,493

    This is what I came up with, is there anything...

    This is what I came up with, is there anything missing?

    typedef struct
    {
    int num;
    char name[20];
    int qty;
    } DATA;

    typedef struct
  8. Thread: Header Node

    by NavyBlue
    Replies
    5
    Views
    3,493

    Header Node

    Can someone tell me how to implement a header node data structure?
  9. Replies
    2
    Views
    1,308

    Circularly Double-Linked List Structure

    I wanna know how would you create the type definition structure for a circularly double-linked list?
  10. Thread: What is ";" ?

    by NavyBlue
    Replies
    3
    Views
    1,056

    What is ";" ?

    I'm trying to read some data from a file. How would I read something that looks like this:

    picture frame;
  11. Replies
    3
    Views
    2,651

    What if the hash array is an array of nodes?

    What if the hash array is an array of nodes?
  12. Replies
    3
    Views
    2,651

    Hash Array Index Search

    I have a hashAry. I want to fill it with data from a file using hash function modulus division. Can I search for the index in the hashAry until it matches with the address from modulus division?
  13. Thread: A Good C Book

    by NavyBlue
    Replies
    3
    Views
    2,206

    A Good C Book

    I need a good beginner/intermediate C book.

    Any recommendations?

    Thanks.
  14. Thread: Parallelogram

    by NavyBlue
    Replies
    23
    Views
    7,536

    Here's a diagram I drew. A (0,...

    Here's a diagram I drew.

    A (0, b)----------------C (a+c, b)


    B (-c, 0) )----------------D (a, 0)

    4 different points on the graph. Point B is in quadrant II. The other points are in...
  15. Thread: Parallelogram

    by NavyBlue
    Replies
    23
    Views
    7,536

    Sorry, guys. I mistyped, not lines AB and BC, but...

    Sorry, guys. I mistyped, not lines AB and BC, but diagonal lines AD and BC. The problem is that I can't really find the slope of BC.

    slope of AD = (0 - b) / (a - 0)
    = -b/a

    slope of BC = (b -...
  16. Thread: Parallelogram

    by NavyBlue
    Replies
    23
    Views
    7,536

    There are 4 coordinates: A = (0,b), B = (-c, 0),...

    There are 4 coordinates: A = (0,b), B = (-c, 0), C = (a+c,b) D = (a,0)

    I tried to find the slopes of diagonal lines AB and BC, but they're not negative reciprocal to each other.
  17. Thread: Parallelogram

    by NavyBlue
    Replies
    23
    Views
    7,536

    Parallelogram

    Hey, guys, I need a little help with this extra credit problem...

    How do you prove the diagonals of a parallelogram are perpendicular to each other, meaning that the diagonals' slopes are negative...
  18. Thread: Dummy Node

    by NavyBlue
    Replies
    11
    Views
    14,256

    The purpose is place it at the begining of the...

    The purpose is place it at the begining of the list, so that there's no need to use pList.
  19. Thread: Dummy Node

    by NavyBlue
    Replies
    11
    Views
    14,256

    Thanks...I have another question for you guys......

    Thanks...I have another question for you guys...

    How would I insert or add that dummy node in the linked list? My program has another function called insertNode that inserts a node when called....
  20. Thread: Dummy Node

    by NavyBlue
    Replies
    11
    Views
    14,256

    Dummy Node

    How do I create a dummy node for a linked list?

    Thanks!
  21. Replies
    5
    Views
    10,741

    Greatest Common Factor

    I'm trying to reduce a fraction and I need to find the GCF. 20/8 would be reduced to 5/2. How would I find the 4?
  22. Replies
    3
    Views
    1,025

    How would I use isalpha? In a loop? I don't where...

    How would I use isalpha? In a loop? I don't where to start with using isalpha to extract alphabets from a string.
  23. Replies
    3
    Views
    1,025

    Capturing alphabets from a string

    How do I extract only alphabets from a string and put them in a different string? Do I need to use isalpha? :)
Results 1 to 23 of 23