Since 4/21/2012 5:41:24 AM, markmcintyre2 has written 1 articles and participated in 406 conversations. markmcintyre2 signature: markmcintyre2
markmcintyre2's articles:
Items(1) /1
removing expired licenses1232 (2/2/2009 11:05:45 PM) comp.os.vms How does one get rid of expired licenses? When I reboot my vms system, I get a hundred-odd messages about expired licenses. These refer to expired hobbyist licenses for the layered products pak. SHO LIC howe... Mark
Decreasing order of address within main5836 (9/21/2009 5:27:47 PM) comp.lang.c Hi, I was playing around with the address of operator and i found some pattern in it. #include int main(void) { int i=10,j=20; int diff; diff = &j - &i; printf("address of diff - %u \naddress of j - %u\nad... karthikbalaguru79(791)
A container library in C Part 4. The arraylist container1632 (9/28/2009 10:11:50 AM) comp.lang.c This implements the ararylist container arraylist.c ---------------------------------------------------- #include "containers.h" static int GetCount( ArrayList *AL); static int IsReadOnly( ArrayList *AL); stat... jacob24(973)
[semi OT] C compiler for Symbian533 (10/1/2009 6:55:51 PM) comp.lang.c Greetings, is there C compiler (at least the one with standard libraries) that works *on* Symbian (mobile phones) - not the one that designs applications for it on 3rd party IDE, usually on PC? I've Goggled... nickname(71)
A note on Peter Seebach's vicious little tirade4827 (10/2/2009 6:05:47 AM) comp.lang.c http://spinoza1111.wordpress.com/2009/10/02/a-note-on-peter-seebachs-viciou= s-little-tirade/ Peter Seebach has written a vicious little tirade on a computer author, Herb Schildt which is at http://www.seebs.... spinoza1111(3250)
Benchmark C vs C++1233 (10/4/2009 9:59:19 PM) comp.lang.c Consider this benchmark --------------------------------------------------------C++ #include #include using namespace std; // Simple example uses type int #define MAXIT 50000000 int main(void) { list L;... jacob24(973)
inline trouble with -std=gnu99 (gcc)4662 (10/6/2009 6:55:19 AM) comp.lang.c Hi, me again. This "project" (lol) compiles without any warnings if -std=gnu99 is NOT specified. However, once it is specified, the inline function is treated as if not there. line: gcc -o a.exe -O2 -Wall -... aeibach1(47)
sorting routine1431 (10/13/2009 11:11:17 PM) comp.lang.c Can someone tell me what kind of sort routine I would need to take data such as this and sort it this way? 23 45000 22 3000 20 4500 The first column is the security price and the second the volume. I... nospam116(1187)
optimizing an expression13433 (10/22/2009 4:40:10 AM) comp.lang.c I am looking for other ways to write the following in as few lines as possible, but I think I have hit the limit... x -= x/abs(x) So far, I have come up with this(it seems to work anyway): x -= x > 0 ? 1 : ... noway540(3)