Since 4/25/2012 6:47:44 PM, news186 has written 1 articles and participated in 631 conversations. news186 signature: news186
news186's articles:
Items(1) /1
Keith Thompson's messages dont come through2728 (11/12/2007 1:05:18 AM) comp.lang.c Keith Thompson wrote this by private email: >"Charlie Gordon" writes: > [...] >> What is wrong with Keith's news server, I don't receive any of his posts >> (neither free.fr, nor aioe.org carry them). Is this... Charlie
Compiler problem....unique to C or compiler???1725 (11/18/2007 9:10:10 PM) comp.lang.c I am working on 5.11 ( once again). So, just stepping through code in the debugger, and get this...and cannot proceed. Have posted to the Xcode forum, but my guess is the real gurus are here in C!! Not sure i... mdeh(568)
freopen on both stdout and stderr652 (11/23/2007 11:49:26 AM) comp.lang.c Hello all, a while ago I was pointed towards freopen as a way to redirect stderr to a log file. It works great, but apparently the app also writes a few lines to stdout. Now I could redirect to 2 separate fil... use_the_form_on_my_contact_page(82)
Sign ' is the same as \' ?1042 (11/23/2007 1:29:46 PM) comp.lang.c Hello everyone, I am surprised to see that the value of sign ' is the same as \'. So, there is no need to add sign \ before sign '? In my past knowledge of sign ', we always need to add sign \ before sign '. ... george4academic(100)
about string and character7435 (11/24/2007 9:27:26 AM) comp.lang.c what is the difference between a single character and a string consisting only one character ... dattts(3)
read 1k * 1k data1434 (11/25/2007 2:47:45 PM) comp.lang.c To solve the 100k * 100k data, I finally adopt the file read method and use malloc. The system somehow knows to use virtual memory. Now I first test 1k * 1k data but something uninterpretable happens again. ... a
why i value doesn't change ?3421 (11/25/2007 3:34:12 PM) comp.lang.c Dear all, consider the following program #include #include main() { int pid,*i,j; i = &j; *i= 10; pid = fork(); if(pid == 0) { printf("\n address of i = %p",i); ... sophia.agnes(81)
question related to compiler optimization529 (11/28/2007 6:43:31 AM) comp.lang.c Guys, Please have a look at the following piece of code: int gcount = 0; int gdelay = 0; /* both gcount and gdelay are changed outside this function by an interrupt handler code */ somefunc() { int ... junky_fellow(377)
While(1) or for(;;) for infinite loops?15959 (12/4/2009 6:06:57 PM) comp.lang.c I assume this has come up before but I am getting nowhere with searches. To make an infinite loop, while(1) tends to generate lint/compiler warnings, for(;;) does not. Other than personal preference, are the... scott7146(164)