Search:

Type: Posts; User: kittykitty

Search: Search took 0.01 seconds.

  1. You might try this...

    You might try this as a start. The output and behavior will probably be off because I couldn't understand parts of the problem statement given here.

    With a golf.txt that looks like:


    $ cat...
  2. Replies
    5
    Views
    1,174

    Since your list is not an automatic variable, it...

    Since your list is not an automatic variable, it is initialized (once and only once) with zeros at the start of your program since no constant initial values are supplied.

    Yes, it is possible. You...
  3. Replies
    5
    Views
    10,093

    What you actually want to do is pass a pointer to...

    What you actually want to do is pass a pointer to the memory holding your 2D array. In C, we typically don't want to pass large, contiguous regions of data by value since it is inefficient, so we...
Results 1 to 3 of 3