Search:

Type: Posts; User: jjexpress

Search: Search took 0.00 seconds.

  1. Replies
    15
    Views
    2,801

    i'm actually trying to do another code void...

    i'm actually trying to do another code


    void saveinfo(ptrcourse *pFirst, ptrstudent *pHead, int ctr[])
    {
    FILE *pFile;
    char filename;
    ptrcourse current;
    current = *pFirst;...
  2. Replies
    15
    Views
    2,801

    should I allocate memory for pTemp?

    should I allocate memory for pTemp?
  3. Replies
    15
    Views
    2,801

    my code is suppose to write all the contents of...

    my code is suppose to write all the contents of the nodes in text file in the given format above.
    What the code is doing is it doesn't output anything.
    I'm a newbie when it comes to files that's...
  4. Replies
    15
    Views
    2,801

    ah while it is not the end of file

    ah while it is not the end of file
  5. Replies
    15
    Views
    2,801

    i'm not sure about what while(!EOF) is doing

    i'm not sure about what while(!EOF) is doing
  6. Replies
    15
    Views
    2,801

    typedef char string30[31]; struct getTime { ...

    typedef char string30[31];

    struct getTime
    {
    int shr;
    int smin;
    int ehr;
    int emin;
    };
  7. Replies
    15
    Views
    2,801

    the values here are not being scanned so It...

    the values here are not being scanned so It doesn't write anything:(
    I'm not sure how to fix the algorithm.
  8. Replies
    15
    Views
    2,801

    help with files

    void files(ptrcourse *pFirst, ptrstudent *pHead, int ctr[])
    {
    FILE *pFile;
    ptrcourse pCurrent,pTemp,pNew;
    ptrstudent sCurrent,sTemp;
    string30 temp;

    ...
  9. Replies
    4
    Views
    1,673

    thanks for helping me can someone help me with...

    thanks for helping me
    can someone help me with this code?


    void files(ptrcourse *pFirst, ptrstudent *pHead, int ctr[])
    {
    FILE *pFile;
    ptrcourse pCurrent,pTemp,pNew;
    ...
  10. Replies
    4
    Views
    1,673

    help with doubly linked lists

    struct course
    {
    string30 coursecode;
    int section;
    int units;
    char schedule[3];
    string30 lecturer;
    int slots;
    struct getTime *ptrtime;
    ...
  11. Replies
    6
    Views
    6,503

    @dwks It works. thanks a lot I have another...

    @dwks
    It works. thanks a lot

    I have another question.
    How can I enable the user to be able to exit the game whenever he wishes?thanks
  12. Replies
    6
    Views
    6,503

    how can I make the switch part a function??

    how can I make the switch part a function??
  13. Replies
    6
    Views
    6,503

    thanks. i'll check it out.

    thanks.
    i'll check it out.
  14. Replies
    6
    Views
    6,503

    help with mastermind

    I just finished my mastermind yesterday and it was perfectly working.

    i tried it again earlier and I found out that the no. of black and white chips does not match the random generated numbers....
Results 1 to 14 of 15