4
votes
4answers
726 views
self referential struct definition?
Hi
I haven't been writing C for very long, and so I'm not sure about how I should go about doing these sorts of recursive things... I would like each cell to contain another cell, but I get …
3
votes
8answers
585 views
Are conflicting types always a problem in C?
I am having growing pains moving from Java to C. I have become used to having different methods with the same name, but which take different parameters. In C this creates problems?
…
10
votes
9answers
920 views
What is the difference between passing by reference in Java and passing a pointer in C?
I have been studying Java for a few months and am now starting to learn C.
I am a little confused, I was under the impression that passing an object by reference and passing a pointer to t …
4
votes
8answers
1k views
Does C allocate memory automatically for me?
I have been writing C for only a scant few weeks and have not taken the time to worry myself too much about malloc(). Recently, though, a program of mine returned a string of happy fac …
4
votes
21answers
962 views
how badly can c crash?
Hi
I have often heard that C can crash spectacularly. Recently I got my first taste of this when a function I expected to return a string instead returned little happy faces. Since then I h …
2
votes
7answers
822 views
What does the 9th commandment mean?
In The Ten Commandments for C Programmers, what is your interpretation of the …
6
votes
7answers
367 views
what is a “private header” in c
Hi
I've been learning c recently, and in one of my textbooks I found a reference to a file with the extension .r (dot r). Now, as you can imagine, googling "r" or "file extension r" is not …
1
vote
2answers
132 views
Handling graphics in OOP style
Hi
In an object-oriented programming style does how does one tend to handle graphics? Should each object contain its own graphics information? How does that information get displayed?
…
