Search:

Type: Posts; User: j.ward91

Search: Search took 0.00 seconds.

  1. Replies
    16
    Views
    5,244

    code changed when i build and run this is what...

    code changed

    when i build and run this is what is displayed on startup:
    11625


    #include <stdio.h>#include <stdlib.h>
    #include <string.h>
    #include <ctype.h>
    #include <conio.h>
  2. Replies
    16
    Views
    5,244

    so like this: void RoomSetup(void){ ...

    so like this:


    void RoomSetup(void){
    strcpy(Room[R_ENTRANCE].Description, "Entrance Corridor");
    Room[R_ENTRANCE].Exit[North]=R_LIVING;
    Room[R_ENTRANCE].Exit[East]=R_GARAGE;
    ...
  3. Replies
    16
    Views
    5,244

    made the recommended changes below, still doesnt...

    made the recommended changes below, still doesnt work, im in over my head here just cant seem to do anything right


    #include <stdio.h>#include <stdlib.h>
    #include <string.h>
    #include <ctype.h>...
  4. Replies
    16
    Views
    5,244

    #include #include #include...

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


    #define North 0
    #define East 1
    #define South 2
    #define West 3
  5. Replies
    16
    Views
    5,244

    fixed that error, but same problem still...

    fixed that error, but same problem still persists, thanks for the fix though
  6. Replies
    16
    Views
    5,244

    help finishing this program

    the program is a 2d floor plan navigating program which displays which room you are currently in, a description of the room and available exits for n, e, s, w directions.

    the program runs okay...
Results 1 to 6 of 6