Search:

Type: Posts; User: blurx

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. Replies
    11
    Views
    2,218

    Writing code like that is like adding when you...

    Writing code like that is like adding when you should be multiplying.
  2. Replies
    7
    Views
    4,041

    What is this? Look at this again. return...

    What is this? Look at this again.


    return sumDigits;
  3. Replies
    6
    Views
    1,457

    It would be c[4] = a[4] + b[4].

    It would be c[4] = a[4] + b[4].
  4. Is your teacher by chance Professor Reed? I won't...

    Is your teacher by chance Professor Reed? I won't list his first name for obvious reasons, but I'm curious since I had this exact assignment three semesters ago.
  5. Store it into an array and print the array...

    Store it into an array and print the array backwards.
  6. Replies
    30
    Views
    4,970

    Well the problem doesn't seem to specify whether...

    Well the problem doesn't seem to specify whether to store the word backwards in an array so printing the original array in reverse would produce the same answer.
  7. Thread: Student records

    by blurx
    Replies
    27
    Views
    7,005

    Um, when you print that data back, then you can...

    Um, when you print that data back, then you can put it in that format. You can't name an integer with "/" characters.
  8. Thread: Student records

    by blurx
    Replies
    27
    Views
    7,005

    Your first error right here. struct DOB{ int...

    Your first error right here.


    struct DOB{ int dd/mm/yyyy
    };
  9. Replies
    12
    Views
    4,434

    Hmm, what's the point of a TA if they can't help...

    Hmm, what's the point of a TA if they can't help you? Although it's questionable if you want "help" or someone to do it for you.
  10. Replies
    6
    Views
    1,157

    Look at the values passed into the fx function,...

    Look at the values passed into the fx function, there's your answer.
  11. Replies
    14
    Views
    2,188

    But, his assignment never even asked for a...

    But, his assignment never even asked for a pointer or an array so it baffles the mind why he is defining one.
  12. Replies
    6
    Views
    1,975

    When you increment count, how will you tally up...

    When you increment count, how will you tally up the individual numbers count? One way is to make another array with 100 items, and use the subscript of that array to count the tally for the numbers....
  13. Replies
    2
    Views
    1,054

    #include int main (void) { ...

    #include <stdio.h>

    int main (void) {
    int fahrenheit = 212;
    const int SUBTRACT_NUM = 32;
    const float RATIO = 5.0/9.0;

    ...
  14. Replies
    8
    Views
    1,691

    That is still bad. The opening brace before the...

    That is still bad. The opening brace before the for loop should be after.
  15. Replies
    4
    Views
    1,171

    Are you saying I need two arrays? The two...

    Are you saying I need two arrays? The two 'arraysize' text confuses me.
  16. Replies
    4
    Views
    1,171

    Trouble with Arrays

    I'm not understanding how to count the frequency of an array element so I basically did the long version. From what I understand, I am suppose to make an array of eleven elements to mirror the 11...
  17. Thread: c[-1]?

    by blurx
    Replies
    21
    Views
    2,643

    c was a pointer so it did mean one element...

    c was a pointer so it did mean one element before. Thanks.
  18. Thread: c[-1]?

    by blurx
    Replies
    21
    Views
    2,643

    c[-1]?

    Say if a function accessed this element in an array called c. What does it mean?
  19. Replies
    7
    Views
    5,586

    1 is rather straight forward. It's obviously not...

    1 is rather straight forward. It's obviously not A or C since they deal with external functions. D is just completely wrong so its obviously B.
  20. Replies
    19
    Views
    3,437

    You should post your code for people to see where...

    You should post your code for people to see where you went wrong.
  21. Replies
    1
    Views
    1,364

    Declare it then. int residue[50];

    Declare it then.


    int residue[50];
  22. Thread: Help me out!

    by blurx
    Replies
    3
    Views
    1,218

    min = min; That isn't helping.

    min = min;

    That isn't helping.
  23. Replies
    10
    Views
    1,504

    Why not declare and define the struct in the...

    Why not declare and define the struct in the header file?
  24. Replies
    22
    Views
    3,727

    For average, add them all up after reading them,...

    For average, add them all up after reading them, with say sum += temp, while incrementing a count to divide the sum by the count.
  25. Replies
    34
    Views
    5,497

    If you're trying to find out the sum, why are you...

    If you're trying to find out the sum, why are you printing out the digits?
Results 1 to 25 of 63
Page 1 of 3 1 2 3