Search:

Type: Posts; User: cougarsmustangs

Search: Search took 0.00 seconds.

  1. Replies
    7
    Views
    1,333

    No, I am still here. I am new to programming. I...

    No, I am still here. I am new to programming. I wasn't sure how to incorporate those into a program. It would take a lot of time to figure that part out. :)
  2. Replies
    7
    Views
    1,333

    Thank You!!! I really appreciate your help kmdv.

    Thank You!!! I really appreciate your help kmdv.
  3. Replies
    7
    Views
    1,333

    Thank You so much!! it does make sense. Would...

    Thank You so much!! it does make sense.

    Would you help me with this one: For a student information system the following data structures are in place:



    struct personal {
    int studentID;
    int...
  4. Replies
    7
    Views
    1,333

    Need help with pointers. Pleaseeee

    1. Consider the following portion of a C program:



    void someFunc(int sizeOfArray, float array[]); // Prototype
    float anArray[12];
    float x;
    float* pf = &x;
  5. Thank you so much!!! That worked like a charm. ...

    Thank you so much!!! That worked like a charm. You are the best.:redface:
  6. Help!! How to use character pointers instead of arrays??

    Here is my program to look up words. How do I use character pointers instead of using arrays?



    #include <stdio.h>


    struct entry
    {
    char word[15];
  7. Generally Declaring Array question

    _____ int student[] = {1, 2, 3, 4};
    _____ int student[];
    _____ int student[4] = {1, 2, 3, 4};
    _____ int student[5] = {1, 2, 3, 4};
  8. Replies
    7
    Views
    4,392

    am i on the right track? I compiled this and its...

    am i on the right track? I compiled this and its still showing pretty much the same errors


    #include <stdio.h>


    int dt;


    struct date
  9. Replies
    7
    Views
    4,392

    I compiled it and its still showing errors: ...

    I compiled it and its still showing errors:






    $ vim ex9.5.c
  10. Replies
    7
    Views
    4,392

    how about now? #include ...

    how about now?



    #include <stdio.h>


    struct date
    {
    int month;
  11. Replies
    7
    Views
    4,392

    my attempt: (but the compiler is showing many...

    my attempt: (but the compiler is showing many errors which i couldn't seem to figure out)



    #include <stdio.h>




    struct dateAndTime clockKeeper (struct dateAndTime dt)
  12. Replies
    7
    Views
    4,392

    Struct Problem

    Question: Write a function called clockKeeper that takes as its argument a dateAndTime structure. THe function should call the timeUpdate function, and if the time reaches midnight, the function...
Results 1 to 12 of 12