User BobbyShaftoe - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T14:51:13Zhttp://stackoverflow.com/feeds/user/38426http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1713183/setting-an-address-and-initialization-of-a-pointer/1713198#17131980Answer by BobbyShaftoe for Setting an address and Initialization of a pointerBobbyShaftoe2009-11-11T05:20:58Z2009-11-11T05:20:58Z<p>Yeah, when you first declare a pointer, you can specify the memory address. Because you are declaring it as a pointer, you use the <code>*</code> operator. But everywhere else, the <code>*pA</code> means to take the value referenced by that pointer (not the actual address). It is a little odd but you get used to it.</p>
<p>So, you can do this:</p>
<pre><code>int a;
int *pA = &a;
</code></pre>
<p>and you can do this:</p>
<pre><code>pA = &a;
</code></pre>
<p>But you cannot do:</p>
<pre><code>*pA = &a;
</code></pre>
<p>Because that says, "make the value pointed by <code>pA</code> = to the value of a."</p>
<p>However, you can do this:</p>
<pre><code>*pA = a;
</code></pre>
<p>And that is just how you set the value pointed to by pA. Hope this is somewhat clear.</p>
http://stackoverflow.com/questions/1708078/always-using-custom-data-types/1708114#17081142Answer by BobbyShaftoe for Always using custom data typesBobbyShaftoe2009-11-10T13:51:48Z2009-11-10T13:51:48Z<p>No, you're not getting any real benefit of that. For some things it makes sense, perhaps an Email class or maybe, maybe an ID class. However, having a "PersonID" or "ClientID" class seems to go far. You could have a "typedef" or alias or whatever but I would not go too far with this in most circumstances. You can go overboard very quickly and end up with a lot of work for no benefit.</p>
http://stackoverflow.com/questions/1708038/can-there-be-2-webmethods-with-same-name-inside-a-web-service-in-c/1708049#17080492Answer by BobbyShaftoe for can there be 2 webmethods with same name inside a web service in c#BobbyShaftoe2009-11-10T13:42:41Z2009-11-10T13:42:41Z<p>No, you can't have two methods with the same name and same signature. That doesn't make much sense.</p>
http://stackoverflow.com/questions/1695108/how-can-i-improve-my-c-coding-process-on-os-x/1695524#16955242Answer by BobbyShaftoe for How can I improve my C coding process on OS X?BobbyShaftoe2009-11-08T05:57:48Z2009-11-08T23:48:17Z<p>I disagree if you want to code ANSI C then this is what I'd suggest. Get familiar with a more powerful text editor, be it vim, emacs or whatever. I prefer vim.</p>
<p>See here:</p>
<p><a href="http://macvim.org/OSX/index.php" rel="nofollow">http://macvim.org/OSX/index.php</a></p>
<p>Now, you should try to setup GNU Make for Mac OS X.</p>
<p>Doing this you will learn the methods most C programmers have used for ages. I think you'll get a lot more out of this than using Xcode straight out. With Xcode you want to make sure you are doing C and not Objective-C.</p>
<p>Now, with an editor like vim, you can do everything from a single terminal and waste fewer cycles switching around in your workflow.</p>
<p>So your workflow becomes:</p>
<p>$vim foo.c<br>
(save)<br>
$make<br>
$./a.out </p>
<p>If you want to do any serious C programming that has any relevance to the UNIX envirnoment (and I suspect that Harvard course does), you will need to learn make at some point.</p>
http://stackoverflow.com/questions/1697440/difference-between-system-and-exec-in-linux/1697452#16974527Answer by BobbyShaftoe for Difference between "system" and "exec" in Linux?BobbyShaftoe2009-11-08T18:33:05Z2009-11-08T18:33:05Z<p>The exec function replace the currently running process image when successful, no child is created (unless you do that yourself previously with <code>fork()</code>). The system() function does fork a child process and returns when the command supplied is finished executing or an error occurs.</p>
http://stackoverflow.com/questions/1684561/in-visual-studio-as-i-am-stepping-through-code-is-there-a-way-to-execute-a-meth/1684582#16845825Answer by BobbyShaftoe for In visual studio, as I am stepping through code, is there a way to execute a method call without stepping into it?BobbyShaftoe2009-11-06T00:16:10Z2009-11-06T00:16:10Z<p>Yeah, use F10, "step over."</p>
http://stackoverflow.com/questions/1683692/how-can-i-establish-a-tcp-connection-between-many-computers-behind-two-firewalls/1683725#16837251Answer by BobbyShaftoe for How can I establish a TCP connection between many computers behind two firewalls?BobbyShaftoe2009-11-05T21:23:43Z2009-11-05T21:23:43Z<p>You could have some server in the cloud acting as a proxy for your connections. For instance, think about how a service like LogMeIn or GoToMyPC manages connections between a client and the controlled host. This is one idea.</p>
http://stackoverflow.com/questions/1683434/detecting-database-tampering-is-it-possible/1683451#16834512Answer by BobbyShaftoe for Detecting database tampering, is it possible?BobbyShaftoe2009-11-05T20:43:50Z2009-11-05T20:43:50Z<p>You could use triggers whereby you audit inserts, updates, and deletes. Now, if the "evil SQL admin" disables triggers then you have some more difficult issues. I would not allow an evil admin to have complete control over the system if I wanted to safeguard my data.</p>
http://stackoverflow.com/questions/1676944/mvp-asp-net-framework/1676955#16769553Answer by BobbyShaftoe for MVP ASP.net frameworkBobbyShaftoe2009-11-04T21:59:09Z2009-11-04T21:59:09Z<p>Model View Presenter at MSDN:</p>
<p><a href="http://msdn.microsoft.com/en-us/magazine/cc188690.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/magazine/cc188690.aspx</a></p>
<p>MVP Framework at CodePlex:</p>
<p><a href="http://www.codeplex.com/aspnetmvp" rel="nofollow">http://www.codeplex.com/aspnetmvp</a></p>
http://stackoverflow.com/questions/1668434/how-much-memory-does-a-constant-take-in-c/1668446#16684461Answer by BobbyShaftoe for How much memory does a constant take in C?BobbyShaftoe2009-11-03T16:25:01Z2009-11-03T16:25:01Z<p>It depends on your architecture but yes whether you make something const or not does not really affect its size but more its location in memory. Now, there are some compiler optimizations that may change what you think will actually happen but this is the basic idea.</p>
http://stackoverflow.com/questions/1663071/c-pointer-syntax-style-poll/1663216#16632169Answer by BobbyShaftoe for C Pointer Syntax: Style pollBobbyShaftoe2009-11-02T19:36:31Z2009-11-02T19:36:31Z<p>Most people prefer:</p>
<pre><code>int *p;
</code></pre>
<p>For in order to be consistent with these types of situations:</p>
<pre><code>int *p, *q, *r;
</code></pre>
<p>Remember, the previous is <strong>not</strong> the same as:</p>
<pre><code>int *p, q, r;
</code></pre>
http://stackoverflow.com/questions/1662294/winforms-best-way-to-keep-winforms-app-unlocked/1662305#16623053Answer by BobbyShaftoe for Winforms: Best way to keep winforms app unlocked?BobbyShaftoe2009-11-02T16:32:22Z2009-11-02T16:32:22Z<p>Do the web service request in a background thread. Be cautious of too many calls to Application.DoEvents().</p>
http://stackoverflow.com/questions/1652775/vb-net-object-on-top-of-another/1652781#16527811Answer by BobbyShaftoe for Vb.Net Object on top of anotherBobbyShaftoe2009-10-30T23:30:39Z2009-10-30T23:30:39Z<p>Wouldn't it be simpler to edit the image to only have the part that is "peeking out" and place that on the form in the appropriate spot?</p>
http://stackoverflow.com/questions/1652504/getting-events-1-character-at-a-time-in-javascript/1652509#16525092Answer by BobbyShaftoe for Getting events 1 character at a time in JavascriptBobbyShaftoe2009-10-30T21:48:55Z2009-10-30T21:48:55Z<p>Oh, try the <code>onkeydown</code> event.</p>
<p>Here's a dumb example:</p>
<pre><code><html>
<body>
<form action="" method="POST" id="myForm">
<input type="text" name="myText" onkeydown="doAlert(event);"/>
<script type="text/javascript" language="JavaScript">
function doAlert(e) {
if(window.event)
{
alert( window.event.keyCode);
}
else if(e)
{
return alert(e.which);
}
else
{
return null;
}
}
</script>
</form>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1652449/resources-for-game-artificial-intelligence/1652463#16524632Answer by BobbyShaftoe for Resources for Game Artificial IntelligenceBobbyShaftoe2009-10-30T21:35:49Z2009-10-30T21:35:49Z<p>Well, you will need different AI strategies for different games. A chess engine is going to be very different from a Texas Hold'em engine. First of all, chess is a game of perfect information whereas poker games have chance.</p>
<p>You should first pick a game you'd like to work on; there will be different solutions. Also, think about what goals you have. For instance, in chess, what level of difficulty would be satisified with?</p>
<p>One SO user has built a "chess engine kit" that targets the .NET framework:</p>
<p><a href="http://www.chessbin.com" rel="nofollow">http://www.chessbin.com</a></p>
<p>A great example of a good simple chess engine is Tim's Simple Chess Program (tscp)</p>
<p><a href="http://www.tckerrigan.com/Chess/TSCP" rel="nofollow">http://www.tckerrigan.com/Chess/TSCP</a></p>
<p>There are hundreds and hundreds of documents that provide useful reading just for chess alone. </p>
http://stackoverflow.com/questions/1650721/server-side-db-programming-why/1650753#16507530Answer by BobbyShaftoe for server side db programming: why?BobbyShaftoe2009-10-30T16:09:05Z2009-10-30T16:09:05Z<p>If you do that, you are tying your business logic to your model. If you code all your business logic in T-SQL, you aren't going to have a lot of fun if later you need to use Oracle or what have you as your database server. Actually, I'm not sure I understand this question exactly. How do you think this would improve scalability? It really shouldn't.</p>
http://stackoverflow.com/questions/1650562/how-do-i-change-what-form-loads-on-startup/1650578#16505782Answer by BobbyShaftoe for How do I change what form loads on startup?BobbyShaftoe2009-10-30T15:39:35Z2009-10-30T15:39:35Z<p>Go to the source file that contains the "Main" function and just change what Form object is being created,</p>
http://stackoverflow.com/questions/1650477/in-c-could-we-imagine-writing-our-own-events-without-writing-delegates/1650518#16505181Answer by BobbyShaftoe for In C# could we imagine writing our own events without writing delegates?BobbyShaftoe2009-10-30T15:32:03Z2009-10-30T15:32:03Z<p>That's a pretty old document and look where it's gotten them. You can do the exact same thing in .NET if you want. All the "Java Way" is doing is taking advantage of inheritance. That's fine but for many the "function pointer" semantic is much more straightforward and less verbose.</p>
http://stackoverflow.com/questions/1650395/faster-string-gethashcode-e-g-using-multicore-or-gpu/1650455#16504550Answer by BobbyShaftoe for Faster String GetHashCode (e.g. using Multicore or GPU)BobbyShaftoe2009-10-30T15:23:35Z2009-10-30T15:23:35Z<p>You could parallelize this however the problem you will run into is that threads, CUDA, etc have overheads associated with them. Even if you use a thread pool, if your strings are not very large, let's say a typical string is 128-256 characters (probably less than this) you will probably still end up making each call to this function taking longer than it did originally.</p>
<p>Now, if you were dealing with very large strings, then yes it would improve your time. The simple algorithm is "embarrassingly parallel."</p>
http://stackoverflow.com/questions/1644189/can-i-optimize-this-piece-of-code/1644219#16442191Answer by BobbyShaftoe for Can I optimize this piece of code?BobbyShaftoe2009-10-29T14:42:11Z2009-10-29T14:56:26Z<p>You could do loop unrolling. Actualy, you could just specify an argument to your compiler to unroll all those loops (the actual arguments depend on your compiler).</p>
<p>I don't know what you're "actual code" is to be able give you more information. One thing you want to optimize your cache access if you are doing something non-trivial.</p>
<p>Also, are you compiling with optimization? (i.e. -O3 in gcc)</p>
<p>Per your edit:</p>
<p>The reason "j+=0" is faster than "fn_val += 0" is because integer arithemtic is MUCH faster than floating point operations.</p>
<p>This is why we need the actual code to give you <strong>informed</strong> optimizations.</p>
http://stackoverflow.com/questions/1640633/multithreaded-a-search-in-java-or-lisp-or-c/1640712#16407124Answer by BobbyShaftoe for Multithreaded A* Search in Java or Lisp or C#BobbyShaftoe2009-10-28T23:08:10Z2009-10-28T23:08:10Z<p>I recommend reading this paper:</p>
<p>"Parallel bidirectional A* search on a symmetry multiprocessor"</p>
<p>There is also another paper, also at IEEE called:</p>
<p>"Parallel Astar search on message-passing architectures"</p>
<p>Both papers find novel methods for gaining quite a bit of speedup.</p>
http://stackoverflow.com/questions/1634436/arrays-pointers-c/1634463#16344638Answer by BobbyShaftoe for arrays / pointers (C)BobbyShaftoe2009-10-28T00:14:24Z2009-10-28T00:14:24Z<p>Yes, for instance:</p>
<p>given:</p>
<pre><code>int a[10];
</code></pre>
<p>Then</p>
<pre><code>*(a + 2)
</code></pre>
<p>is equivalent to</p>
<pre><code>a[2]
</code></pre>
<p>and just for good measure.</p>
<pre><code>a[2]
</code></pre>
<p>is equivalent to</p>
<pre><code>2[a]
</code></pre>
http://stackoverflow.com/questions/1633573/what-is-this-syntax-in-java-i-do-not-recognize-it/1633594#16335943Answer by BobbyShaftoe for What is this syntax in Java? I do not recognize it.BobbyShaftoe2009-10-27T20:52:42Z2009-10-27T20:52:42Z<p>This is just a branching statement and <code>goodUsage</code> is simply a label. See here:</p>
<p><a href="http://java.sun.com/docs/books/tutorial/java/nutsandbolts/branch.html" rel="nofollow">http://java.sun.com/docs/books/tutorial/java/nutsandbolts/branch.html</a></p>
http://stackoverflow.com/questions/1633213/optimum-programming-language-to-implement-server-using-tcp-ip-socket/1633242#16332420Answer by BobbyShaftoe for Optimum programming language to implement server using tcp/ip socketBobbyShaftoe2009-10-27T19:48:17Z2009-10-27T19:48:17Z<p>What language are you most familiar with? What kind problem set do you have? A lot depends on these questions. Most popular programming languages have good documentation for doing socket programmimng. It depends on tastes. I prefer the C programming language. I'm sure some people will also chime to offer Erlang as a good language to use. Again, it depends.</p>
http://stackoverflow.com/questions/1619996/running-external-command-with-user-input-in-c/1620064#16200640Answer by BobbyShaftoe for Running external command with user input in CBobbyShaftoe2009-10-25T05:06:54Z2009-10-25T05:49:15Z<p>I'm sure I'm asking for a firestorm of criticism but nevertheless here is the basic idea. I didn't check this for compiler errors and didn't supply the header files. It's just a code snippet I whipped up while taking a drink.</p>
<p>Basically, you <code>fork()</code>, in the child process redirect <strong>stderr</strong> and call <code>exec()</code>, call <code>waitpid()</code> in the parent process and get the return value of "dialog," and if there was no error read the file to which you redirect <strong>stderr</strong>.</p>
<pre><code>pid_t pid;
char cmd[] = "dialog";
char *args[] = {"dialog", "--menu", NULL};
int status;
int fd;
if((pid = fork()) == 0)
{
/* child */
/* I believe dialog prints to stderr the answer chosen
* also you should check the return value of open()
*/
fd = open("some_file_name", O_WRONLY | O_CREAT | O_TRUNC, 0);
close(STDERR_FILENO);
dup(fd);
execvp(cmd, args);
perror("execvp()");
exit(1);
}
else if(pid < 0)
{
perror("fork()");
exit(1);
}
else
{
/* parent */
/* you should also check the return of waitpid()
* this is just for example
*/
waitpid(pid, &status, 0);
/* if everything was ok then status has the return value
* also the file "some_file_name" should have the output
*/
}
</code></pre>
http://stackoverflow.com/questions/1619482/what-techniques-to-avoid-conditional-branching-do-you-know/1619776#16197761Answer by BobbyShaftoe for What techniques to avoid conditional branching do you know?BobbyShaftoe2009-10-25T02:21:44Z2009-10-25T02:21:44Z<p>Most processors provide branch prediction that is better than 50%. In fact, if you get a 1% improvement in branch prediction then you can probably publish a paper. There are a mountain of papers on this topic if you are interested.</p>
<p>You're better off worrying about cache hits and misses.</p>
http://stackoverflow.com/questions/1615676/is-there-a-cpu-that-can-change-variables-simultaneously/1615694#16156941Answer by BobbyShaftoe for Is there a CPU that can change variables simultaneously?BobbyShaftoe2009-10-23T20:22:43Z2009-10-23T20:22:43Z<p>I think you might be a little confusing. You can't even achieve that using threads. What do you mean by a "call" exactly? A single line of code? That first line is just a convenience offered during declaration in many C like languages. </p>
<p>I mean, you could create some sort of function that takes a list of variables by reference and then a list of values and then you could just call that function. I'm not sure what you are trying to accomplish exactly. </p>
<p>But no, there isn't a single statement without using functions in most C like languages (you didn't specify a language) that would do that except if you want all the variables to have the same value(i.e. <code>i = j = k = 0;</code>).</p>
http://stackoverflow.com/questions/1614928/how-did-the-code-achieve-pass-by-reference/1614948#16149482Answer by BobbyShaftoe for How did the code achieve pass by reference?BobbyShaftoe2009-10-23T17:42:50Z2009-10-23T19:18:07Z<p>In C#, all parameters are passed by value by default. There are two kinds of types in C#, namely value and reference types.</p>
<p>A variable of reference type when passed as a parameter to a function will still be passed by value; that is if the function changes the object referred to by that variable, after the function completes the variable that was passed in will still refer to the same object (including null) as it did prior to calling the function in the same context.</p>
<p>However, if you use the <code>ref</code> modifier when declaring the function parameter than the function may change the object being referenced by the variable in the caller's context.</p>
<p>For Value types this is more straightforward but it is the same concept. Bear in mind, <code>int[]</code> is a reference type (as are all arrays).</p>
<p>Consider the differences in these functions when passing in some some array of ints:</p>
<pre><code> public static void Square1(int[] array)
{
for (int i = 0; i < array.Length; i++)
{
array[i] = array[i] * array[i];
}
}
public static void Square2(int[] array)
{
array = {10, 20, 30};
for (int i = 0; i < array.Length; i++)
{
array[i] = array[i] * array[i];
}
}
public static void Square3(ref int[] array)
{
array = {10, 20, 30};
for (int i = 0; i < array.Length; i++)
{
array[i] = array[i] * array[i];
}
}
</code></pre>
http://stackoverflow.com/questions/1614399/c-endian-conversion-bit-by-bit/1614469#16144690Answer by BobbyShaftoe for C Endian Conversion : bit by bitBobbyShaftoe2009-10-23T16:10:30Z2009-10-23T16:10:30Z<p>Can you explain this further? Are you trying to reverse the bits within bytes or simply reverse the byte order (typical in networking, going from "host byte order" to "network byte order"). It sounds like all you really want is the typical case. If you provide more info, I can edit and privide a better answer.</p>
http://stackoverflow.com/questions/1614365/mysql-how-can-i-store-retrieve-a-value-based-on-the-3-other-values-in-the-same/1614455#16144550Answer by BobbyShaftoe for MYSQL: How can I store/retrieve a value based on the 3+ other values in the same table?BobbyShaftoe2009-10-23T16:06:39Z2009-10-23T16:06:39Z<p>Can you explain your problem a little more. From what you have I'm not sure if you're trying to go down the path of Entity-Attribute-Value or probably what is more likely is that relational database is not a good fit for your problem; you may need to use some sort of tree data structure. If you update, I can try to provide a better answer.</p>
http://stackoverflow.com/questions/1820102/how-can-i-create-a-linq-to-sql-statement-when-i-have-table-name-as-stringComment by BobbyShaftoe on How can I create a LINQ-to-SQL statement when I have table name as string?BobbyShaftoe2009-11-30T14:23:16Z2009-11-30T14:23:16ZI suppose you could use reflection here to get a handle on the right Table class.http://stackoverflow.com/questions/1779715/how-to-get-mac-address-of-your-machine-using-a-c-program/1779777#1779777Comment by BobbyShaftoe on How to get MAC address of your machine using a C program?BobbyShaftoe2009-11-23T14:10:32Z2009-11-23T14:10:32ZAlso, this isn't going to compile in any C compiler I know of.http://stackoverflow.com/questions/819894/how-to-consume-ms-crm-web-services-from-c/820043#820043Comment by BobbyShaftoe on How to: Consume MS CRM Web Services from C#?BobbyShaftoe2009-11-19T02:05:17Z2009-11-19T02:05:17ZGlad to hear it!http://stackoverflow.com/questions/1732671/how-to-get-instance-from-string-in-c/1732679#1732679Comment by BobbyShaftoe on How to get instance from string in C#?BobbyShaftoe2009-11-14T00:09:30Z2009-11-14T00:09:30ZI wouldn't say it's really slow. I mean many, many frameworks are based around using Reflection extensively; much of databinding stuff utilizes reflection on properties.http://stackoverflow.com/questions/1732671/how-to-get-instance-from-string-in-c/1732678#1732678Comment by BobbyShaftoe on How to get instance from string in C#?BobbyShaftoe2009-11-14T00:08:23Z2009-11-14T00:08:23ZYeah, but Reflection is the clear answer here.http://stackoverflow.com/questions/1713183/setting-an-address-and-initialization-of-a-pointerComment by BobbyShaftoe on Setting an address and Initialization of a pointerBobbyShaftoe2009-11-11T05:22:44Z2009-11-11T05:22:44ZWelcome to SO. :)http://stackoverflow.com/questions/1712888/what-is-your-opinion-on-google-goComment by BobbyShaftoe on What is your opinion on google go?BobbyShaftoe2009-11-11T03:55:12Z2009-11-11T03:55:12ZThanks for the heads up this is interesting. Maybe I'll let some undergrads play around with this. :)http://stackoverflow.com/questions/1708078/always-using-custom-data-types/1708114#1708114Comment by BobbyShaftoe on Always using custom data typesBobbyShaftoe2009-11-10T15:34:37Z2009-11-10T15:34:37Z@Martin, your complaint is almost interesting but I did address those issues by saying there may be some circumstances, such as in the case of an Email class or whatever. There is no question that what you propose would "solve 1 and 3" but to provide benefit you need to solve a real problem that can actually impact you. The fact that you are asking suggests you think it may not be beneficial enough. Typedefs are used for this sort of thing but they don't solve 1 and 3 no; they aren't meant to solve the "I accidentally passed in the wrong type" problem.http://stackoverflow.com/questions/1707810/clear-code-for-counting-from-0-to-255-using-8-bit-datatypeComment by BobbyShaftoe on clear code for counting from 0 to 255 using 8-bit datatypeBobbyShaftoe2009-11-10T14:03:36Z2009-11-10T14:03:36ZYeah, this is definitely not ANSI C.http://stackoverflow.com/questions/1708038/can-there-be-2-webmethods-with-same-name-inside-a-web-service-in-c/1708101#1708101Comment by BobbyShaftoe on can there be 2 webmethods with same name inside a web service in c#BobbyShaftoe2009-11-10T14:00:56Z2009-11-10T14:00:56ZBut this is about overloading. http://stackoverflow.com/questions/1708038/can-there-be-2-webmethods-with-same-name-inside-a-web-service-in-c/1708049#1708049Comment by BobbyShaftoe on can there be 2 webmethods with same name inside a web service in c#BobbyShaftoe2009-11-10T13:59:49Z2009-11-10T13:59:49Z@leppie, I'm not sure this makes any sense to me whatsoever. If you have two functions with the same name and aren't doing function overloading then you have the same signature. Now, there's something else interesting about this. Having such a thing will not compile and thus will not work. So, this doesn't make much sense to me either.http://stackoverflow.com/questions/1704492/convert-any-file-into-pdf-format-for-netComment by BobbyShaftoe on convert any file into pdf format for .net?BobbyShaftoe2009-11-09T22:54:45Z2009-11-09T22:54:45ZObviously, you need a certain scope of file formats right? Do you want mp3's to be converted as well? :)http://stackoverflow.com/questions/1701728/graphics-library-in-c/1701841#1701841Comment by BobbyShaftoe on Graphics library in CBobbyShaftoe2009-11-09T21:11:18Z2009-11-09T21:11:18ZThe site says "DISLIN is free for non-commercial use." Just my two cents.http://stackoverflow.com/questions/1695108/how-can-i-improve-my-c-coding-process-on-os-x/1695127#1695127Comment by BobbyShaftoe on How can I improve my C coding process on OS X?BobbyShaftoe2009-11-09T21:02:35Z2009-11-09T21:02:35ZOk, I just wanted to make it clear than an Objective-C compiler is not an ANSI C compilerhttp://stackoverflow.com/questions/1702980/stack-memory-fundamentalsComment by BobbyShaftoe on Stack memory fundamentalsBobbyShaftoe2009-11-09T19:09:19Z2009-11-09T19:09:19ZThis works but I recommend against doing this. Define your constants somewhere else. Although, it depends on your situation, there might be a time when this is an ok design. Just think about it a little bit.