Search:

Type: Posts; User: JeffColo

Search: Search took 0.00 seconds.

  1. Replies
    13
    Views
    3,100

    I got printf ( "d" , itemNum); my problem when...

    I got printf ( "d" , itemNum);
    my problem when using fscanf the program says itemNum undeclared?
  2. Replies
    13
    Views
    3,100

    Okay. When I use fscanf (" %d ", &pNew->itemNum);...

    Okay. When I use fscanf (" %d ", &pNew->itemNum);
    and I only want itemNum to print out. How do I do this?
  3. Replies
    13
    Views
    3,100

    Linked lists are confusing. I am confused I made...

    Linked lists are confusing. I am confused I made the insertadd to add products to linked list. I am reading from a file and I am having a problem printing out the product node of the list using...
  4. Replies
    13
    Views
    3,100

    This program needs to manage products in a store;...

    This program needs to manage products in a store; along with stock for a product
    also manages reordering of depleted products once item reaches zero
    and then manage the total sales to all customers...
  5. Replies
    13
    Views
    3,100

    In the gist of my situation I am trying to make...

    In the gist of my situation I am trying to make linked list for additem, restocklist, and sales. I need to read in a file that gets information by line and then returns back the daily sales, and also...
  6. Replies
    13
    Views
    3,100

    Problem with Program

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

    FILE* fin;
    FILE* fout;



    typedef struct KnightsMartProduct {
    int itemNum;
Results 1 to 6 of 6