active questions tagged c - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T01:54:19Z http://stackoverflow.com/feeds/tag/c http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1793867/best-way-to-check-if-a-character-array-is-empty 1 Best way to check if a character array is empty unknown (google) 2009-11-25T00:12:00Z 2009-11-25T01:25:28Z <p>Which is the most reliable way to check if a character array is empty?</p> <pre><code>char text[50]; if(strlen(text) == 0) {} </code></pre> <p>or</p> <pre><code>if(text[0] == '\0') {} </code></pre> <p>or do i need to do </p> <pre><code> memset(text, 0, sizeof(text)); if(strlen(text) == 0) {} </code></pre> <p>Whats the most efficient way to go about this?</p> http://stackoverflow.com/questions/1793616/why-doesnt-getchar-recognise-return-as-eof-in-windows-console 2 Why doesn't getchar() recognise return as EOF in windows console? Gary Willoughby 2009-11-24T23:15:39Z 2009-11-25T01:03:31Z <p>I have a small snippet of code below that i'm running using <a href="http://www.smorgasbordet.com/pellesc/" rel="nofollow">PellesC</a>.</p> <p>When the code is executed and i've typed a few characters into the console, i press enter. </p> <p>Can you explain to me why the <code>printf("%ld\n", nc);</code> line doesn't seem to get executed? As no output is written to the console.</p> <pre><code>#include &lt;stdio.h&gt; int main(void) { long nc = 0; while(getchar() != EOF) { ++nc; } printf("%ld\n", nc); } </code></pre> <p>I've decided to learn C thoroughly using the K&amp;R book and i'm embarrased to say this rather elementary example has me stumped.</p> http://stackoverflow.com/questions/1793971/why-does-gcc-give-me-a-syntax-error-when-trying-to-return-a-struct-pointer 3 Why does GCC give me a syntax error when trying to return a struct pointer? jamesk89 2009-11-25T00:44:38Z 2009-11-25T00:50:56Z <p>I'm using CodeLite on Ubuntu and for some bizzare reason GCC keeps throwing this error whenever I try to compile code with a function that returns a pointer to a struct:</p> <pre><code>error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘*’ token </code></pre> <p>Here is an example I wrote up to demonstrate this error:</p> <pre><code>#include &lt;stdio.h&gt; typedef struct test_t { unsigned char someVar; }; test_t* testFunc() { // GCC throws that error on this line return NULL; } int main(int argc, char **argv) { return 0; } </code></pre> <p>So unless I'm forgetting something obvious I would normally expect this code to compile on any other compiler, namely MSVC, so I'm completely confused as to why it doesn't work.</p> <p>Hopefully one of you experts can please enlighten me.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1772078/disabling-nul-termination-of-strings-in-gcc 0 Disabling NUL-termination of strings in GCC timn 2009-11-20T17:32:40Z 2009-11-25T00:45:59Z <p>Is it possible to globally disable NUL-terminated strings in GCC?</p> <p>I am using my own string library, and I have absolutely no need for the final NUL characters as it already stores the proper length internally in a struct.</p> <p>However, if I wanted to append 10 strings, this would mean that 10 bytes are unnecessarily allocated on the stack. With wide strings it is even worse: As for x86, there are 40 bytes wasted; and for x86_64, 80 bytes!</p> <p>I defined a macro to add those stack-allocated strings to my struct:</p> <pre><code>#define AppendString(ppDest, pSource) \ AppendSubString(ppDest, (*ppDest)-&gt;len + 1, pSource, 0, sizeof(pSource) - 1) </code></pre> <p>Using <code>sizeof(...) - 1</code> works quite well but I am wondering whether I could get rid of NUL termination in order to save a few bytes?</p> http://stackoverflow.com/questions/1790204/in-c-is-i1-atomic 9 In C is "i+=1;" atomic? Crazy Chenz 2009-11-24T13:53:54Z 2009-11-25T00:37:19Z <p>In C, is <code>i+=1;</code> atomic?</p> http://stackoverflow.com/questions/1789705/how-does-make-know-which-files-to-update 2 How does make know which files to update Phenom 2009-11-24T12:15:01Z 2009-11-25T00:33:54Z <p>I noticed that when I make changes to some files and then I type make, it will run certain commands related to those files. If I don't change anything, then make doesn't do anything, saying that the program is up to date. This tells me that make has a way of knowing which files were changed since it was last run. How does it know? It doesn't seem to put anything in the directory where it is run, so it must be storing this information somewhere else.</p> http://stackoverflow.com/questions/145096/is-it-true-that-there-is-no-need-to-learn-c-because-c-contains-everything 19 Is it true that there is no need to learn C because C++ contains everything? pomeranian 2008-09-28T03:08:02Z 2009-11-24T23:29:41Z <p>I am taking a class in C++ programming and the professor told us that there is no need to learn C because C++ contains everything in C plus object-oriented features. However, some others have told me that this is not necessarily true. Can anyone shed some light on this?</p> http://stackoverflow.com/questions/1545423/libpcap-no-wireless-devices-detected 0 libpcap : No Wireless Devices detected Siddhant 2009-10-09T18:40:11Z 2009-11-24T22:47:25Z <p>Hi. I want to capture packets going out of my machine, and I'm using libpcap (version 1.0.0-1) for the same. The problem is, that a basic program like this - </p> <pre><code>#include &lt;stdio.h&gt; #include &lt;pcap.h&gt; int main(int argc, char *argv[]) { char *dev, errbuf[PCAP_ERRBUF_SIZE]; dev = pcap_lookupdev(errbuf); if (dev == NULL) { fprintf(stderr, "%s\n", errbuf); return (2); } printf("Device : %s\n", dev); return (0); } </code></pre> <p>does not seem to display the wireless interface. Everytime I compile and run the program, it detects eth0. How can I make it capture the wireless interfaces as well?</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across 51 What is the worst real-world macros/pre-processor abuse you've ever come across? Trevor Boyd Smith 2009-03-17T01:57:42Z 2009-11-24T22:44:17Z <p>What is the <em>worst</em> <strong>real-world</strong> macros/pre-processor abuse you've ever come across (please no contrived IOCCC answers *haha*)?</p> <p>Please add a short snippet or story if it is really entertaining. The goal is to teach something instead of always telling people "never use macros".</p> <p><hr /></p> <p>p.s.: I've used macros before... but usually I get rid of them eventually when I have a "real" solution (even if the real solution is inlined so it becomes similar to a macro).</p> <p><hr /></p> <p><strong>Bonus:</strong> Give an example where the macro was really was better than a not-macro solution.</p> <p><strong>Related question:</strong> <a href="http://stackoverflow.com/questions/96196/when-are-c-macros-beneficial">When are C++ macros beneficial?</a> </p> http://stackoverflow.com/questions/1791601/what-does-explorer-use-to-open-a-file 0 What does explorer use to open a file? dauphic 2009-11-24T17:21:18Z 2009-11-24T22:35:44Z <p>I'm attempting to hook into whatever explorer calls when a file is opened (double-click, context menu open, etc.), however I can't figure out which function that is.</p> <p>Originally, I thought it was ShellExecute, as that does the same thing as far as I can tell, but after hooking into it I learned that it's only used when a new explorer window is opened.</p> <p>Any ideas which function I should be hooking?</p> http://stackoverflow.com/questions/1668434/how-much-memory-does-a-constant-take-in-c 8 How much memory does a constant take in C? tsubasa 2009-11-03T16:23:34Z 2009-11-24T22:24:11Z <p>when doing like this:</p> <pre><code>const int a = 5; </code></pre> <p>I wonder if a will get 4-byte of memory just like a variable ? (in 32 bit system)</p> http://stackoverflow.com/questions/14165/strange-c-errors-with-code-that-has-min-max-calls 4 Strange C++ errors with code that has min()/max() calls. Ashwin 2008-08-18T04:13:34Z 2009-11-24T22:17:01Z <p>I'm seeing strange errors when my C++ code has min() or max() calls. I'm using Visual C++ compilers.</p> http://stackoverflow.com/questions/1722260/what-creates-the-stack 0 What creates the stack? piemesons 2009-11-12T13:42:49Z 2009-11-24T22:07:12Z <p>Suppose in a program we have implemented a stack. But who creates the stack ? Is it the processor, or operating system, or compiler?</p> http://stackoverflow.com/questions/1789408/can-doubles-be-used-to-represent-a-64-bit-number-without-loss-of-precision 2 Can doubles be used to represent a 64 bit number without loss of precision Kop 2009-11-24T11:16:17Z 2009-11-24T21:57:37Z <p>I want to use lua (that internally uses only doubles) to represent a integer that can't have rounding errors between 0 and 2^64-1 or terrible things will happen.</p> <p>Is it possible to do so? </p> http://stackoverflow.com/questions/1772679/anybody-tried-to-compile-go-on-windows-its-seems-start-supporting-to-generate 0 Anybody tried to compile "Go" on Windows?, Its seems start supporting to generate PE Format now. S.Mark 2009-11-20T19:19:25Z 2009-11-24T21:29:22Z <p><a href="http://code.google.com/r/hectorchu-go-windows/source/list" rel="nofollow">http://code.google.com/r/hectorchu-go-windows/source/list</a></p> <p>If you could compile it successfully, I like to know the procedures of how to.</p> http://stackoverflow.com/questions/1790208/how-to-use-strtol-to-read-from-an-int64-value 1 How to use strtol to read from an __int64 value ? Arabcoder 2009-11-24T13:54:30Z 2009-11-24T21:23:24Z <p>Do exist on msvc and mingw a 64 bits equivalent function to do it ?</p> <p>Aparently K&amp;R was thinking that 2^32 was enough</p> http://stackoverflow.com/questions/1792520/slightly-weird-imo-c-code 4 slightly weird (imo) C++ code yetapb 2009-11-24T19:54:50Z 2009-11-24T20:37:40Z <p>Sorry if this is simple, my C++ is rusty.</p> <p>What is this doing? There is no assignment or function call as far as I can see. This code pattern is repeated many times in some code I inherited. If it matters it's embedded code.</p> <pre><code>*(volatile UINT16 *)&amp;someVar-&gt;something; </code></pre> <p>edit: continuing from there, does the following additional code confirm Heaths suspicions? (exactly from code, including the repetition, except the names have been changed to protect the innocent)</p> <pre><code>if (!WaitForNotBusy(50)) return ERROR_CODE_X; *(volatile UINT16 *)&amp; someVar-&gt;something; if (!WaitForNotBusy(50)) return ERROR_CODE_X; *(volatile UINT16 *)&amp; someVar-&gt;something; x = SomeData; </code></pre> http://stackoverflow.com/questions/1788696/how-the-code-behaves-different-for-java-and-c-compiler 5 how the code behaves different for java and C compiler ? vipin k. 2009-11-24T08:35:41Z 2009-11-24T19:32:51Z <p>I have this Code, i ran this on Java and C ,but they give me two different Results What is that makes them to run differently.</p> <pre><code>x=10;y=10;z=10; y-=x--; z-=--x; x-=--x-x--; </code></pre> <p>The Output in <strong>java</strong> for value of X is : <strong>8</strong> <BR> and for <strong>C</strong> it is <strong>6</strong> How these Two compiler Behaves differently for incremented options.?.</p> http://stackoverflow.com/questions/1791616/implementing-dhcp-client 0 Implementing DHCP client lex 2009-11-24T17:24:24Z 2009-11-24T18:28:29Z <p>On unix using C, my client is listening on port 68 with superuser mode. After sending DHCP discover message, when I try to receive, it blocks in recvfrom means there is no message received or is it like system has a process (DHCP client) listening on same port 68 which receives the message and thats my process are not able to receive the message. What is the problem?</p> <p>I have set the socket option SO_REUSEADDR and SO_BROADCAST. I am sending to port 67.</p> <pre><code>struct dhcpmessage { uint8_t op; uint8_t htype; uint8_t hlen; uint8_t hops; uint32_t xid; uint16_t secs; uint16_t flags; uint32_t ciaddr; uint32_t yiaddr; uint32_t siaddr; uint32_t giaddr; char chaddr[16]; char sname[64]; char file[128]; char magic[4]; char opt[3]; } __attribute__((__packed__)); #include&lt;stdio.h&gt; #include&lt;ctype.h&gt; #include&lt;stdlib.h&gt; #include&lt;string.h&gt; #include&lt;unistd.h&gt; #include&lt;signal.h&gt; #include&lt;sys/wait.h&gt; #include&lt;sys/types.h&gt; #include&lt;sys/socket.h&gt; #include&lt;netinet/in.h&gt; #include&lt;arpa/inet.h&gt; #include&lt;errno.h&gt; #include&lt;sys/file.h&gt; #include&lt;sys/msg.h&gt; #include&lt;sys/ipc.h&gt; #include&lt;time.h&gt; #include"defs.h" int main() { int sockfd,listenfd,connfd; const int on=1; struct sockaddr_in servaddr,cliaddr,rservaddr; if((sockfd=socket(AF_INET,SOCK_DGRAM,0)) &lt; 0) die("socket"); if(setsockopt(sockfd,SOL_SOCKET,SO_REUSEADDR,&amp;on,sizeof(on)) &lt; 0) die("setsockopt"); if(setsockopt(sockfd,SOL_SOCKET,SO_BROADCAST,&amp;on,sizeof(on)) &lt; 0) die("setsockopt"); bzero(&amp;servaddr,sizeof(servaddr)); bzero(&amp;cliaddr,sizeof(cliaddr)); cliaddr.sin_port = htons(68); cliaddr.sin_family = AF_INET; cliaddr.sin_addr.s_addr = htonl(INADDR_ANY); if(bind(sockfd,(struct sockaddr*)&amp;cliaddr,sizeof(cliaddr)) &lt; 0) die("bind"); servaddr.sin_port = htons(67); servaddr.sin_family = AF_INET; servaddr.sin_addr.s_addr = inet_addr("255.255.255.255"); struct dhcpmessage dhcpmsg; bzero(&amp;dhcpmsg,sizeof(dhcpmsg)); dhcpmsg.op = 1; dhcpmsg.htype = 1; dhcpmsg.hlen = 6; dhcpmsg.hops = 0; dhcpmsg.xid = htonl(1000); dhcpmsg.secs = htons(0); dhcpmsg.flags = htons(0x8000); dhcpmsg.chaddr[0] = 0x00; dhcpmsg.chaddr[1] = 0x1A; dhcpmsg.chaddr[2] = 0x80; dhcpmsg.chaddr[3] = 0x80; dhcpmsg.chaddr[4] = 0x2C; dhcpmsg.chaddr[5] = 0xC3; dhcpmsg.magic[0]=99; dhcpmsg.magic[1]=130; dhcpmsg.magic[2]=83; dhcpmsg.magic[3]=99; dhcpmsg.opt[0]=53; dhcpmsg.opt[1]=1; dhcpmsg.opt[2]=1; if(sendto(sockfd,&amp;dhcpmsg,sizeof(dhcpmsg),0,(struct sockaddr*)&amp;servaddr,sizeof(servaddr)) &lt; 0) die("sendto"); struct dhcpmessage recvdhcpmsg; socklen_t rservlen = sizeof(rservaddr); if(recvfrom(sockfd,&amp;recvdhcpmsg,sizeof(recvdhcpmsg),0,(struct sockaddr*)&amp;rservaddr,&amp;rservlen) &lt; 0) die("recvfrom"); char *str = (char*)&amp;recvdhcpmsg; int i; for(i=0;i&lt;sizeof(recvdhcpmsg);i++) printf("%d_",str[i]); printf("\n"); return 0; } </code></pre> http://stackoverflow.com/questions/1791427/is-this-possible-to-call-c-c-application-from-db2-stored-procedure-trigger 1 Is this possible to call c/c++ application from DB2 stored procedure/trigger? y2kx 2009-11-24T16:59:07Z 2009-11-24T18:16:29Z <p>Is this possible to call c/c++ application from DB2 stored procedure/trigger? If yes, what would be general steps doing it? Any pointers to web resources on the subject?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1791130/dhcp-client-doesnt-receive-response-on-port-68 0 DHCP client doesnt receive response on port 68 Ryan 2009-11-24T16:17:43Z 2009-11-24T17:06:59Z <p>I have used wireshark to see the DHCP packet structure. Now I have created a DHCPDISCOVER request and stored it in 'message'. I then broadcast it on the network.</p> <pre><code> sockfd = socket(AF_INET, SOCK_DGRAM, 0); if (sockfd &lt; 0) { perror("socket"); exit(1); } setsockopt(sockfd,SOL_SOCKET,SO_BROADCAST, &amp;on,sizeof(on)); setsockopt(sockfd,SOL_SOCKET,SO_REUSEADDR, &amp;on,sizeof(on)); bzero(&amp;cliaddr, sizeof(cliaddr)); cliaddr.sin_family = AF_INET; cliaddr.sin_addr.s_addr = htonl(INADDR_ANY); cliaddr.sin_port = htons(68); if (bind(sockfd, (struct sockaddr *) &amp;cliaddr, sizeof(cliaddr)) &lt; 0) { perror("bind"); exit(1); } bzero(&amp;addr, sizeof(addr)); addr.sin_family = AF_INET; addr.sin_addr.s_addr = inet_addr("255.255.255.255"); addr.sin_port = htons(67); cnt = sendto(sockfd, message, sizeof(message), 0,(struct sockaddr *) &amp;addr, sizeof(addr)); if (cnt &lt; 0) { perror("sendto"); exit(1); } addrlen = sizeof(servaddr); cnt = recvfrom(sockfd, reply, sizeof(reply), 0,(struct sockaddr *) &amp;servaddr, &amp;addrlen); if (cnt &lt; 0) { perror("recvfrom"); exit(1); } printf("\nReply Received\n"); </code></pre> <p>I run this program and analyze the packets sent and received using wireshark. I see that a DHCPDISCOVER packet is sent on port 67 and a DHCPOffer packet is received on port 68 in the wireshark window. My client sends the packet fine but does not receive this packet and it blocks on recvfrom call. What is going wrong?</p> http://stackoverflow.com/questions/1764980/safe-dll-injection 0 'Safe' DLL Injection dauphic 2009-11-19T17:14:06Z 2009-11-24T16:33:10Z <p>Not a terribly good question, sorry.</p> <p>I have a program that needs to be alerted when a file is opened from explorer (i.e. ShellExecute(A/W) is called).</p> <p>Unfortunately, Microsoft removed the COM interface (IShellExecuteHook) that allows you to hook these events in Vista and up, supposedly because older code could cause a crash due to changes. There was a work-around to re-enable this feature, but it no longer works.</p> <p>I've done some research and it looks like the only way to catch calls to ShellExecute is to re-route the call to shell32.dll. At the moment, I'm looking at injecting my own DLL into the explorer process, then copying the IAT entry for ShellExecute to some address allocation in my DLL, and finally modifying the IAT entry for ShellExecute to point to my function, which will notify the program that a file was opened and jump to the original ShellExecute function, whose address we stored earlier.</p> <p>My biggest concern here is antiviruses. Will they care that I'm injecting into explorer? Will they care that I'm modifying the IAT? </p> <p>Another concern is whether this is safe; is it possible (or rather likely) for explorer's security priveleges to not allow injection via CreateRemoteThread? If so, is there a better way to do this injection?</p> <p>Is there a better way to do this in general?</p> <p><strong>EDIT: For anyone who comes across this in the future, explorer.exe has no IAT for shell32.dll; it has a header, but the thunk is full of junk values, so there's no way (as far as I can tell) to retrieve the entry for any imported functions. <br/>Looks like code tunneling is the only way to hook this.</strong></p> http://stackoverflow.com/questions/1787892/overflow-over-scanf8s-string 2 Overflow over scanf("%8s", string)? Figo 2009-11-24T04:58:48Z 2009-11-24T16:32:16Z <p>Hi, I know it's possible to overflow ordinary code:</p> <p><strong>char string[9];</strong></p> <p>scanf("%s", string). </p> <p>But is it possible to overflow scanf("%8s", string)? 8 is just an example.</p> <p>I know "%8s" works like a delimit, but I also notice when I input string longer than 8 chars, the program will terminate due to:</p> <p><strong>* stack smashing detected *</strong>: ./a.out terminated</p> <p>======= Backtrace: =========</p> <p>...</p> <p>Obviously there's a flag that detects stack smashing turned on by GCC by default. Since this is a stack smashing, then my guess is that it is still possible to overflow and execute arbitrary code.</p> <p>Contrary to normal overflow that mangles the caller of scanf("%s"), if scanf("%8s") can overflow, it will overflow within scanf function so that when scanf try to return, control is gained.</p> <p>But scanf is a syscall that requires mode-switch (switching from user mode into kernel mode), and internally it will call stuff like read to the stdin etc. So not sure if we can overflow in kernel mode or something..</p> <p>Comments are welcome!!</p> <p><strong><em>UPDATE >></em></strong> </p> <p>char string[9] is assumed in the above example. char string[8] in following real code.</p> <p>The question is really about the seeming conflicting story between safe scanf("%8s") and GCC abortion due to stack smashing.</p> <p>Simplified code:</p> <pre><code>void foo(pass some pointer) { char input[8]; int input_number = 0; while (1) { // looping console printf some info; scanf("%8s", input); input_number = atoi(input); if ((strlen(input) == 1) &amp;&amp; (strncmp(input, "q", 1) == 0)) { input_number = -1; } switch (input_number) { case -1: to quit the console if input = 'q'; default: to print info that pointer refers to; ... } } } </code></pre> <p>Note: </p> <ol> <li>foo is called by someone else.</li> <li>Though string is 8 bytes in real code with "%8s", I don't think this lead to smashing.</li> </ol> http://stackoverflow.com/questions/1787996/c-library-function-to-do-sort 0 C library function to do sort Ankur 2009-11-24T05:29:20Z 2009-11-24T16:23:47Z <p>Is there any library function available in C standard library to do sort? </p> http://stackoverflow.com/questions/1790980/popup-window-appearing-while-stopping-the-c-process 0 Popup window appearing while stopping the C process Amrish 2009-11-24T15:55:03Z 2009-11-24T16:03:32Z <p>I am calling a C process from my Java program, and ending that C process using exit (0).</p> <p>On Windows machine, under certain conditions it is opening a pop-up window telling me that "Test.exe has encountered a problem and needs to close. We are sorry for the inconvenience."</p> <p>Does anyone have a guess why this problem is coming around? I want a clean shutdown without any window being opened.</p> <p>I have used below alternatives also to close, with the same result:</p> <pre><code>exit(EXIT_SUCESS); </code></pre> <p>and</p> <pre><code>return 0; </code></pre> http://stackoverflow.com/questions/1790293/how-to-detect-if-a-bluetooth-hid-device-was-disconnected 0 How to detect if a Bluetooth HID device was disconnected? Thomas 2009-11-24T14:07:07Z 2009-11-24T15:57:05Z <p>I'm using <code>CreateFile</code> to open an asynchronous file handle to a Bluetooth HID device on the system. The device will then start streaming data, and I use <code>ReadFile</code> to read data from the device. The problem is, that if the Bluetooth connection is dropped, <code>ReadFile</code> just keeps giving <code>ERROR_IO_PENDING</code> instead of reporting a failure.</p> <p>I cannot rely on timeouts, because the device doesn't send any data if there is nothing to report. I do not want it to time out if the connection is still alive, but there is simply no data for a while.</p> <p>Still, the Bluetooth manager (both the Windows one and the Toshiba one) do immediately notice that the connection was lost. So this information is somewhere inside the system; it's just not getting through to <code>ReadFile</code>.</p> <p>I have available:</p> <ul> <li>the file handle (<code>HANDLE</code> value) to the device,</li> <li>the path that was used to open that handle (but I don't want to attempt to open it another time, creating a new connection...)</li> <li>an <code>OVERLAPPED</code> struct used for asynchronous <code>ReadFile</code>.</li> </ul> <p>I am not sure if this issue is Bluetooth-specific, HID-specific, or occurs with devices in general. Is there any way that I can either</p> <ul> <li>get <code>ReadFile</code> to return an error when the connection was dropped, or</li> <li>detect <em>quickly</em> upon a timeout from <code>ReadFile</code> whether the connection is still alive (it needs to be fast because <code>ReadFile</code> is called at least 100 times per second), or</li> <li>solve this problem in another way I haven't thought of?</li> </ul> http://stackoverflow.com/questions/1786257/properly-handling-platform-specifics-unix-windows-in-c 1 Properly handling platform specifics (unix/windows) in C? xyld 2009-11-23T21:49:12Z 2009-11-24T15:49:48Z <p>This question is intentionally very generic and I'm not much of a C programmer although I dabble here and there. The following code is intentionally vague and probably won't compile, but I hope you get the point...</p> <p>Handling platform specifics seems dynamically in a compiled language like C seems unnecessary and even scary:</p> <pre><code>int main(int argc, char *argv[]) { if (windows) dowindowsroutine(); else dounixroutine(); return 0; } </code></pre> <p>However, handling platform specifics through really very basic macros seems gross too as the function gets chopped up into small pieces which may not compile properly (read answer to <a href="http://stackoverflow.com/questions/1644868/c-define-macro-for-debug-printing">http://stackoverflow.com/questions/1644868/c-define-macro-for-debug-printing</a> for a similar problem).</p> <pre><code>int main(int argc, char *argv[]) { #ifdef windows dowindowsroutine(); #else dounixroutine(); #endif return 0; } </code></pre> <p>So what's the "right" way to do this? Is it a case-by-case basis? Is there a good way to keep these gross macros out of functions entirely? I remember reading somewhere (probably in the kernel docs or something related) that macros (more importantly, complex macro logic) is meant for header files, not .c files. How do you handle this kind of stuff?</p> <p>I'm sick of "spaghetti code" with ifdef's inside of functions... I spose there are some cases where it may be OK, but the majority of code I see abuse it.</p> <p>Note: I've seen some perl XS code look like it wraps function prototypes to and things, but is that the only way? Isn't that somewhat gross in the community? Or is that OK? Coming from a mostly "scripted" background of perl, python, shell,... It's hard for me to tell.</p> <p>Update: Let me be more clear, the problem I'm trying to avoid is that I don't want choppy code. I want to be able to ensure that if my code breaks at compile time in linux, it also breaks at compile time in windows. With the choppy code, its possible to break windows from compiling, but not linux and vice versa. Is this kind of thing possible? The closest thing to this so far is ifdef'ing the entire function, but the function names are the same, is there a better solution where there is one interface, but the OS specific parts have their OS name embedded into the name?</p> http://stackoverflow.com/questions/1790750/what-is-the-difference-between-read-and-recv-and-between-send-and-write 4 what is the difference between read() and recv() , and between send() and write() ? SjB 2009-11-24T15:20:52Z 2009-11-24T15:24:51Z <p>what is the difference between read() and recv() , and between send() and write() in socket programming ? performance and speed .</p> http://stackoverflow.com/questions/1790356/64-bit-versions-of-ftell-and-fseek 0 64-bit versions of ftell and fseek Arabcoder 2009-11-24T14:16:30Z 2009-11-24T14:24:35Z <p>for mingw and msvc also if possible linux gcc</p> http://stackoverflow.com/questions/1788783/is-system-programming-dead 3 Is system programming dead? hyperboreean 2009-11-24T08:59:22Z 2009-11-24T13:52:07Z <p>I am asking here from the perspective of a C programmer using mostly Unix. Is it still worth it to do system programming in C?</p>