Search:

Type: Posts; User: Cdd101

Page 1 of 8 1 2 3 4

Search: Search took 0.01 seconds.

  1. like this? 13232

    like this?
    13232
  2. well I found one mistake i had int...

    well I found one mistake i had


    int sort(struct flight *my_flight, int size_of_array)
    {
    int i, j;
    struct flight x;
    for (i = 0; i < size_of_array; i++){
    for (j = 0; j <...
  3. My bad! It's XCode. gcc 4.2.1

    My bad! It's XCode. gcc 4.2.1
  4. How can I turn up the error checking on my ide?

    The reason being is that it says that my program is right


    #include <string.h>
    #include <stdio.h>
    #include <stdlib.h>
    #define NFlights 10
  5. Replies
    18
    Views
    1,441

    :| Well i'm stupid. Thank you so much!

    :| Well i'm stupid. Thank you so much!
  6. Replies
    18
    Views
    1,441

    Michael 9999 10 21 1991 10 28 0 0 Armin 8888 10...

    Michael 9999 10 21 1991 10 28 0 0
    Armin 8888 10 21 1991 10 27 0 0

    Armin 8888 10 21 1991 10 27 0 0
    Michael 9999 10 21 1991 10 28 0 0

    Took forever to print though
  7. Replies
    18
    Views
    1,441

    I only have my browser and that xcode file opened...

    I only have my browser and that xcode file opened it took around 10 minutes to calculate it
  8. Replies
    18
    Views
    1,441

    It took forever to print it out but it got the...

    It took forever to print it out but it got the right answer. Any way to fix that?
  9. Replies
    18
    Views
    1,441

    struct date { int month; int day; ...

    struct date
    {
    int month;
    int day;
    int year;
    int hour;
    int minute;
    int meridian;
    };
  10. Replies
    18
    Views
    1,441

    This is how I did your way int...

    This is how I did your way


    int lessThan(struct student S1 , struct student S2) {
    struct date A = S1.date_of_enrollment;
    struct date B = S2.date_of_enrollment;
    struct date C =...
  11. Replies
    18
    Views
    1,441

    It sorts perfectly until it gets to time(my way)....

    It sorts perfectly until it gets to time(my way). Trying your way now.
  12. Replies
    18
    Views
    1,441

    Your way would be better than this? int...

    Your way would be better than this?


    int lessThan(struct student S1 , struct student S2) {
    struct date A = S1.date_of_enrollment;
    struct date B = S2.date_of_enrollment;
    struct date...
  13. Replies
    18
    Views
    1,441

    The meridian is supposed to be included on the...

    The meridian is supposed to be included on the homework assignment sadly.
  14. Replies
    18
    Views
    1,441

    You entered : Gonzalo 0 0 0 0 0 0 0 0 Gonzalo...

    You entered :
    Gonzalo 0 0 0 0 0 0 0 0
    Gonzalo 0 0 0 0 0 0 0 0
    Gonzalo 0 0 0 0 0 0 0 0
    Chavez 9999 10 21 1991 10 28 0 0

    That's what it prints
  15. Replies
    18
    Views
    1,441

    alright pal thank you! I'll report back

    alright pal thank you! I'll report back
  16. Replies
    18
    Views
    1,441

    Having trouble to sort by meridian(am and pm)

    This is my code and it work


    #include <stdio.h>


    struct date
    {
    int month;
    int day;
  17. Replies
    35
    Views
    3,356

    Sorry about that just really fed up with this...

    Sorry about that just really fed up with this assignment. We don't really get taught pointers and he gives us stuff that he hasn't covered. Basically it prints out the second list not the entire...
  18. Replies
    35
    Views
    3,356

    Hey guys so the next part of the assignment asks...

    Hey guys so the next part of the assignment asks me to create a function to add and remove students. Any way on the add function to make it print out the completed list. So if I add 2 first and then...
  19. Replies
    35
    Views
    3,356

    He gave us till otmorrow at 2pm which is great....

    He gave us till otmorrow at 2pm which is great. Just have one more thing to do. I really need to tkae a break from this. Was putting me in a horrible mood.
  20. Replies
    35
    Views
    3,356

    Wow...I'm so stupid..

    Wow...I'm so stupid..
  21. Replies
    35
    Views
    3,356

    I'm so sorry, I basically just copied what you...

    I'm so sorry, I basically just copied what you put and it doesn't work. I'm fed up with this assignment at the moment.


    //
    // main.c
    // Homework 10_3
    //
    // Created by Gonzalo Chavez on...
  22. Replies
    35
    Views
    3,356

    So i will have to do that with each?

    So i will have to do that with each?
  23. Replies
    35
    Views
    3,356

    Seems I keep posting the wrong code. This is...

    Seems I keep posting the wrong code.

    This is what I get now

    How many students in the Class?: 2

    Enter first name: Gonzalo
    Enter last name: Chavez
    Enter id: 9999
    Enter grade: 99
  24. Replies
    35
    Views
    3,356

    My bad posted the wrong one. #include...

    My bad posted the wrong one.



    #include <string.h>
    #include <stdio.h>
    #define MAXSTUD 20


    typedef struct
  25. Replies
    35
    Views
    3,356

    // // main.c // Homework 10_3 // // ...

    //
    // main.c
    // Homework 10_3
    //
    // Created by Gonzalo Chavez on 11/29/13.
    // Copyright (c) 2013 Gonzalo Chavez. All rights reserved.
    //


    #include <string.h>
Results 1 to 25 of 196
Page 1 of 8 1 2 3 4