active questions tagged c - Stack Overflowmost recent 30 from stackoverflow.com2010-02-09T23:34:55Zhttp://stackoverflow.com/feeds/tag/chttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2232861/where-can-i-get-started-with-unicode-friendly-programming-in-c5Where can I get started with Unicode-friendly programming in C?elliottcable2010-02-09T22:03:32Z2010-02-09T23:34:30Z
<p>So, I’m working on a plain-C (ANSI 9899:1999) project, and am trying to figure out where to get started re: Unicode, UTF-8, and all that jazz.</p>
<p>Specifically, it’s a language interpreter project, and I have two primary places where I’ll need to handle Unicode: reading in source files (the language ostensibly supports Unicode identifiers and such), and in ‘string’ objects.</p>
<p>I’m familiar with all the obvious basics about Unicode, UTF-7/8/16/32 & UCS-2/4, so on and so forth… I’m mostly looking for useful, C-specific (that is, please no C++ or C#, which is all that’s been documented here on SO previously) resources as to my ‘next steps’ to implement Unicode-friendly stuff… in C.</p>
<p>Any links, manpages, Wikipedia articles, example code, is all extremely welcome. I’ll also try to maintain a list of such resources here in the original question, for anybody who happens across it later.</p>
<hr>
<ul>
<li>A <em>must read</em> before considering anything else, if you’re unfamiliar with Unicode, and what an encoding <em>actually is</em>: <a href="http://www.joelonsoftware.com/articles/Unicode.html" rel="nofollow">http://www.joelonsoftware.com/articles/Unicode.html</a></li>
<li>The UTF-8 home-page: <a href="http://www.utf-8.com/" rel="nofollow">http://www.utf-8.com/</a></li>
<li><code>man 3 iconv</code> (as well as <code>iconv_open</code> and <code>iconvctl</code>)</li>
<li><a href="http://site.icu-project.org/home" rel="nofollow">International Components for Unicode</a> (via <a href="http://stackoverflow.com/users/166955/geoff-reedy">Geoff Reedy</a>)</li>
<li><a href="http://www.dekorte.com/projects/opensource/libbasekit/" rel="nofollow"><code>libbasekit</code></a>, which seems to include light Unicode-handling tools</li>
<li><a href="http://library.gnome.org/devel/glib/stable/glib-Unicode-Manipulation.html" rel="nofollow">Glib</a> has some Unicode functions</li>
</ul>
http://stackoverflow.com/questions/2233304/using-c-to-remove-certain-characters-then-put-rest-in-array0Using C to remove certain characters then put rest in arrayMatt S.2010-02-09T23:26:22Z2010-02-09T23:30:12Z
<p>How can I take a string (in this case it'll be loaded from a file) then remove certain characters and store them in an array.</p>
<p>Ex:</p>
<p>f.e.d.r.t.g.f</p>
<p>remove "." to get f e d r t g f in an array where I can manipulate each individually </p>
http://stackoverflow.com/questions/501486/getting-gdb-to-save-a-list-of-breakpoints9Getting gdb to save a list of breakpoints?casualcoder2009-02-01T20:09:18Z2010-02-09T23:03:09Z
<p>OK, info break lists the breakpoints, but not in a format that would work well with reusing them using the --command <a href="http://stackoverflow.com/questions/500967/gdb-breakpoints">as in this question</a>. Does gdb have a method for dumping them into a file acceptable for input again? Sometimes in a debugging session, it is necessary to restart gdb after building up a set of breakpoints for testing.</p>
<p><strong>Edit:</strong> the .gdbinit file has the same problem as --command. The info break command does not list commands, but rather a table for human consumption.</p>
<p>To elaborate, here is a sample from info break:</p>
<pre>
(gdb) info break
Num Type Disp Enb Address What
1 breakpoint keep y 0x08048517 <foo::bar(void)+7>
</pre>
http://stackoverflow.com/questions/2230718/production-code-for-finding-junction-in-a-linked-list0Production code for finding junction in a linked listNeeraj2010-02-09T16:36:10Z2010-02-09T22:47:20Z
<p>Hi all,<br>
I was asked this question in some interview.</p>
<p>I was required to write code for finding junction in a linked list (which is in form of Y with both arms not necessarily equal) for production environment in O(1) space and linear time.<br>
I came up with this solution (which i had previously seen somewhere) :<pre>
1. Measure lengths of both lists, let them be l1 and l2
2. Move the pointer of larger list by |(l1-l2)|.
3. Now move together both the pointers, if they point to same location,
that is the junction.
</pre>
Interviewer: How will your code handle ? </p>
<blockquote> Case 1. The Y-format linked list has loop in the end after the junction. <br/>
Case 2. Either of the input lists is cyclic and they don't merge. <br/>
Case 3. The Y-format list has loop in the end before the junction.</blockquote>
<p>In response to case 1, my answer was:<blockquote>I will find the loop in the list using two pointers (one fast and slow), measure the length to the node at which both the pointers meet and then proceed as previous case.</blockquote>
Whereas, for cases 2 and 3, I was able to figure out no better solution than gracefully exiting when a loop is detected (using the 2-pointer technique).</p>
<p><br/>
I believe there are better answers to this problem.Please drop down yours :).</p>
<p>Thanks,</p>
http://stackoverflow.com/questions/2232706/swapping-objects-using-pointers-in-c2Swapping Objects Using Pointers in CCrystal2010-02-09T21:36:10Z2010-02-09T22:23:01Z
<p>I'm trying to swap objects for a homework problem that uses void pointers to swap objects. The declaration of my function has to be:</p>
<pre><code>void swap(void *a, void *b, size_t size);
</code></pre>
<p>I'm not looking for the exact code how to do it so I can figure it out by myself, but I'm not sure if I understand it correctly. I found that one problem is by doing:</p>
<pre><code>void *temp;
temp = a;
a = b;
b = temp;
</code></pre>
<p>only changes what the pointers point to. Is that correct? If it is correct, why doesn't swapping pointers actually change the contents between *a and *b. Because if your pointer points to something different, couldn't you dereference it and the objects would now be different? </p>
<p>Similarly, just switching the values like:</p>
<pre><code>void *temp;
*temp = *a;
*a = *b;
*b = *temp;
</code></pre>
<p>Is not correct either, which I'm not sure why. Because again, it seems to me that the content is switched.</p>
<p>Does swapping objects mean complete swapping of memory and value of what a pointer points to?</p>
<p>So it seems like I have to use malloc to allocate enough space for my swap. If I allocate enough memory for one object, assuming they are the same size, I don't really see how it is different than the other two methods above. </p>
<pre><code>void *temp = malloc(sizeof(pa));
// check for null pointer
temp = a;
// do something I'm not sure of since I don't quite get how allocating space is any
// different than the two above methods???
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/2231317/inconveniences-of-pointers-to-static-variables3Inconveniences of pointers to static variablesjoveha2010-02-09T18:09:00Z2010-02-09T22:20:59Z
<p>I often use convenience functions that return pointers to static buffers like this:</p>
<pre><code>char* p(int x) {
static char res[512];
snprintf(res, sizeof(res)-1, "number is %d", x));
return res;
}
</code></pre>
<p>and use them all over the place as arguments to other functions:</p>
<pre><code>...
some_func( somearg, p(6) );
....
</code></pre>
<p>However, this "convenience" has an annoying drawback besides not being thread-safe (and probably many more reasons):</p>
<pre><code>some_func( somearg, p(6), p(7) );
</code></pre>
<p>The above obviously doesn't do what I want since the last two arguments will point to the same memory space. I would like to be able get the above to work properly without to many hassles.</p>
<p>So my question is:</p>
<p><strong>Is there some magic way I have missed to accomplish what I want without doing cumbersome allocation & freeing?</strong></p>
http://stackoverflow.com/questions/2232348/portable-used-defined-character-class-division-in-c89-by-a-lookup-table-would-yo0Portable used defined character class division in C89 by a lookup table, would you do this?Questionable2010-02-09T20:34:58Z2010-02-09T22:05:58Z
<pre><code>static const int class[UCHAR_MAX] =
{ [(unsigned char)'a'] = LOWER, /*macro value classifying the characters*/
[(unsigned char)'b'] = LOWER,
.
.
.
}
</code></pre>
<p>This is just an idea. Is it a bad one?</p>
http://stackoverflow.com/questions/2232737/if-0-as-a-define4#if 0 as a definevalerio2010-02-09T21:42:40Z2010-02-09T22:01:22Z
<p>I need a way to define a <code>FLAGS_IF</code> macro (or equivalent) such that</p>
<pre><code>FLAGS_IF(expression)
<block_of_code>
FLAGS_ENDIF
</code></pre>
<p>when compiling in debug (e.g. with a specific compiler switch) compiles to</p>
<pre><code>if (MyFunction(expression))
{
<block_of_code>
}
</code></pre>
<p>whereas in release does not result in any instruction, just as it was like this</p>
<pre><code>#if 0
<block_of_code>
#endif
</code></pre>
<p>In my ignorance on the matter of c/c++ preprocessors i can't think of any naive way (since <code>#define FLAGS_IF(x) #if 0</code> does not even compile) of doing this, can you help?</p>
<p>I need a solution that:</p>
<ul>
<li>Does not get messed up if <code>*/</code> is present inside <code><block_of_code></code></li>
<li>Is sure to generate 0 instructions in release even inside inline functions at any depth (i guess this excludes <code>if (false){<block_of_code>}</code> right?)</li>
<li>Is standard compliant if possible</li>
</ul>
<p>Thank you</p>
http://stackoverflow.com/questions/2223374/c-library-works-in-vb6-but-not-in-c0C++ library works in vb6 but not in c#Bernabé Panarello2010-02-08T17:07:34Z2010-02-09T21:12:50Z
<p>Hello,
I'm writing a C# application that has to consume a C++ api provided by my customer. The library works fine when it's referenced by a vb6 application, but when I reference it in my c# application and try to call the same methods, i get a different (wrong) behaviour. The methods I'm calling take a couple of string arguments. Provided that I don't have the library's source code, I can only gess what could be wrong and this leads me to the following tought: Is it possible that the library could have been designed to be called from vb6 only? I mean for example, that it could be expecting the string parameters to be encoded in a certain way different from the one c# uses. If so, is there any workaround for this? So far the best I could do was to create a vb6 wrapper ocx, but it's not any elegant and least of all easy to deploy solution.</p>
<p>Im posting the code which initializes the object:</p>
<hr>
<pre><code> ApiPrnClass apiprn; // this is the class imported form the com reference
for (int j = 0; j < 10; j++)
{
apiprn = new ApiPrnClass();
apiprn.FMGetModel(_TIPODISPOSITIVO.iDocument);
apiprn.FMPRNFormat(_TIPODISPOSITIVO.iDocument, _TIPOFORMATO.DEL_CONDENSED, "");
apiprn.PRNBeforePrint(_TIPODISPOSITIVO.iDocument, "");
for (int i = 0; i < 10; i++)
{
string linea = "TEST C/ BUFF XXX-----------------------".Replace("XXX", (10 * j + i).ToString().PadLeft(3, '0'));
apiprn.FMPrint(_TIPODISPOSITIVO.iDocument, linea);
}
apiprn.PRNAfterPrint(_TIPODISPOSITIVO.iDocument);
System.Threading.Thread.Sleep(1000);
</code></pre>
<h2> }</h2>
<p>I would appreciate any help,
Thanks,
Bernabé</p>
http://stackoverflow.com/questions/2052952/creating-an-mjpeg-viewer-iphone0Creating an MJPEG Viewer IphoneTony2010-01-12T22:32:00Z2010-02-09T21:05:37Z
<p>Hey all,</p>
<p>Im trying to make a MJPEG viewer in Objective C but I'm having a bunch of issues with it.</p>
<p>First off, Im using AsyncSocket(http://code.google.com/p/cocoaasyncsocket/) which lets me connect to the host. </p>
<p>Here's what I got so far</p>
<pre><code>NSLog(@"Ready");
asyncSocket = [[AsyncSocket alloc] initWithDelegate:self];
//http://kamera5.vfp.slu.se/axis-cgi/mjpg/video.cgi
NSError *err = nil;
if(![asyncSocket connectToHost:@"kamera5.vfp.slu.se" onPort:80 error:&err])
{
NSLog(@"Error: %@", err);
}
</code></pre>
<p>then in the didConnectToHost method:</p>
<pre><code> - (void)onSocket:(AsyncSocket *)sock didConnectToHost:(NSString *)host port:(UInt16)port{
NSLog(@"Accepted client %@:%hu", host, port);
NSString *urlString = [NSString stringWithFormat:@"http://kamera5.vfp.slu.se/axis-cgi/mjpg/video.cgi"];
NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
[request setURL:[NSURL URLWithString:urlString]];
[request setHTTPMethod:@"GET"];
//set headers
NSString *_host = [NSString stringWithFormat:host];
[request addValue:_host forHTTPHeaderField: @"Host"];
NSString *KeepAlive = [NSString stringWithFormat:@"300"];
[request addValue:KeepAlive forHTTPHeaderField: @"Keep-Alive"];
NSString *connection = [NSString stringWithFormat:@"keep-alive"];
[request addValue:connection forHTTPHeaderField: @"Connection"];
//get response
NSHTTPURLResponse* urlResponse = nil;
NSError *error = [[NSError alloc] init];
NSData *responseData = [NSURLConnection sendSynchronousRequest:request returningResponse:&urlResponse error:&error];
NSString *result = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
NSLog(@"Response Code: %d", [urlResponse statusCode]);
if ([urlResponse statusCode] >= 200 && [urlResponse statusCode] < 300) {
NSLog(@"Response: %@", result);
//here you get the response
}
</code></pre>
<p>}</p>
<p>This calls the MJPEG stream, but it doesn't call it to get more data. What I think its doing is just loading the first chunk of data, then disconnecting.</p>
<p>Am I doing this totally wrong or is there light at the end of this tunnel?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/2218931/extension-of-binary-search-algo-to-find-the-first-and-last-index-of-the-key-value2Extension of Binary search algo to find the first and last index of the key value to be searched in an array.phillytu2010-02-08T00:13:27Z2010-02-09T21:03:45Z
<p>The problem is to extend the binary search algorithm to find all occurrences of a target value in a sorted array in the most efficient way.
Concretely speaking, the input of the algorithm are (1) a sorted array of integers, where some numbers may appear more than once, and (2) a target integer to be searched. The output of the algorithm should be a pair of index values, indicating the first and last occurrence of the integer in the array, if it does occur.
The source code could be in c#, c, c++.</p>
<p>Also what is the max and min number of comparisons that we might need to find the indexes.</p>
http://stackoverflow.com/questions/2231287/updating-python-variable-from-c0Updating python variable from cjeffaudio2010-02-09T18:04:13Z2010-02-09T21:02:22Z
<p>I am having an intermittent error causing my Python module to crash, and I'm assuming it's because of a memory error occurring by not getting the refcounts correct in the c code. I have a bit of code that gets a response at a random time from a remote location. Based on the data received, it needs to update a data variable which I should have access to in Python. What's the best way to accomplish this? The following code runs most of the time, and it works correctly when it does, but when it doesn't it crashes Python (bringing up the visual studio debug box). Thanks.</p>
<pre><code>if (event == kResponseEvent) {
list = PyList_New(0);
for (i = 0; i < event->count; i++) {
PyList_Append(list, Py_BuildValue("{s:i, s:s}",
"id", event->id,
"name", event->name));
}
PyModule_AddObject(module, "names", list);
}
</code></pre>
http://stackoverflow.com/questions/2227191/speclialized-hashtable-algorithms-for-dynamic-static-incremental-data2Speclialized hashtable algorithms for dynamic/static/incremental dataStasM2010-02-09T06:21:59Z2010-02-09T20:51:59Z
<p>I have a number of data sets that have key-value pattern - i.e. a string key and a pointer to the data. Right now it is stored in hashtables, each table having array of slots corresponding to hash keys, and on collision forming a linked list under each slot that has collision (direct chaining). All implemented in C (and should stay in C) if it matters.</p>
<p>Now, the data is actually 3 slightly different types of data sets:</p>
<ol>
<li>Some sets can be changed (keys added, removed, replaced, etc.) at will</li>
<li>For some sets data can be added but almost never replaced/removed (i.e. it can happen, but in practice it is very rare)</li>
<li>For some sets the data is added once and then only looked up, it is never changed once the whole set is loaded. </li>
</ol>
<p>All sets of course have to support lookups as fast as possible, and consume minimal amounts of memory (though lookup speed is more important than size). </p>
<p>So the question is - is there some better hashtable structure/implementation that would suit the specific cases better? I suspect for the first case the chaining is the best, but not sure about two other cases. </p>
http://stackoverflow.com/questions/2231056/ansi-c-iso-c90-can-scanf-read-accept-an-unsigned-char5ANSI C (ISO C90): Can scanf read/accept an unsigned char?Tim2010-02-09T17:29:08Z2010-02-09T20:44:04Z
<p>Simple question: Can scanf read/accept an unsigned char in ANSI C?</p>
<p>example code un_char.c: </p>
<pre><code>#include <stdio.h>
#include <stdlib.h>
int main(void)
{
unsigned char character;
scanf("%hhu", &character);
return EXIT_SUCCESS;
}
</code></pre>
<p>Compiled as:</p>
<pre><code>$ gcc -Wall -ansi -pedantic -o un_char un_char.c
un_char.c: In function ‘main’:
un_char.c:8: warning: ISO C90 does not support the ‘hh’ gnu_scanf length modifier
</code></pre>
<p><code>hh</code> isn't supported by ISO C90. So what scanf conversion can be used in this situation?</p>
http://stackoverflow.com/questions/2232209/c-unix-domain-sockets-ancillary-data-and-gcc-using-cmsg-data-macro2C, Unix Domain Sockets, Ancillary data, and GCC; Using CMSG_DATA macroPhoenix Sol2010-02-09T20:12:04Z2010-02-09T20:15:06Z
<p>How can I do this:</p>
<pre><code>*(int *)CMSG_DATA(hdr) = fd2pass;
</code></pre>
<p>Without GCC raising this:</p>
<pre><code>error: dereferencing type-punned pointer will break strict-aliasing rules
</code></pre>
<p>In a way compatible with these options:</p>
<pre><code>-Wall -Werror -pedantic
</code></pre>
http://stackoverflow.com/questions/2232092/is-this-a-safe-way-to-share-read-only-memory-with-child-processes3Is this a safe way to share read-only memory with child processes?therefromhere2010-02-09T19:53:45Z2010-02-09T20:10:44Z
<p>I want to allocate and initialise a fairly large chunk of contiguous memory (~1GB), then mark it as read-only and fork multiple (say several dozen) child processes which will use it, without making their own copies of the memory (the machine won't have enough memory for this).</p>
<p>Am I right in thinking that if I <a href="http://linux.die.net/man/3/malloc" rel="nofollow"><code>malloc</code></a> the memory as usual, then mark it as read-only with <a href="http://linux.die.net/man/2/mprotect" rel="nofollow"><code>mprotect(addr, size, PROT_READ)</code></a> and then <a href="http://linux.die.net/man/2/fork" rel="nofollow"><code>fork</code></a>, this will allow the child processes to safely use the memory without causing it to be copied? (Providing I ensure nothing tries to write to the allocated memory after the <code>mprotect</code> call).</p>
http://stackoverflow.com/questions/2183888/default-flags-for-gcc-compiler-in-eclipse0Default flags for gcc compiler in EclipsePieter2010-02-02T12:20:42Z2010-02-09T20:01:18Z
<p>I want all my C programs to be compiled with the options <code>-Wall -pedantic -ansi</code> by default. Is there a way to have Eclipse add these flags to the compiler command by default for all projects?</p>
http://stackoverflow.com/questions/2232012/c-seg-faults-and-memory-management4C++, Seg Faults, and Memory ManagementStephano2010-02-09T19:44:15Z2010-02-09T19:59:43Z
<p>I'm moving from Java to C++ and have really enjoyed it. One thing I don't enjoy is not understanding memory at all because Java used to do that for me.</p>
<p>I've purchased a book : Memory as a Programming Concept in C and C++ - Frantisek Franek</p>
<p>Are there some good sites for me to go and learn interactively about C/C++ and memory use (tutorials, forums, user groups)? </p>
http://stackoverflow.com/questions/2230213/c-exception-through-c-code4C++ exception through C codeheavyd2010-02-09T15:33:41Z2010-02-09T19:54:29Z
<p>I have some C++ code that is calling into a C library. The C library provides me a mechanism to have a function called when an error occurs to clean things up and hopefully do something useful. I would like to use C++ exceptions in my error handler in order to return execution back to my code when an error occurs in the library, however, when I try to throw an exception my application always exits with the following message: <strong>terminate called after throwing an instance of 'i'</strong>. Is it possible to throw an exception like this? What are my alternatives?</p>
<p>Example code:</p>
<pre><code>void MyCPPFunc()
{
try
{
struct libinfo info;
info.err_handler = handle_error;
c_lib_do_work(&info);
}
catch(int x)
{
printf("Caught");
}
}
void handle_error()
{
// Cleanup
// ...
throw 0; // Causes "terminate called after throwing an instance of 'i'"
}
</code></pre>
<p>Compiler: GCC 3.4.3 for ARM</p>
http://stackoverflow.com/questions/2231891/on-the-linux-command-line4* on the linux command lineTom2010-02-09T19:30:51Z2010-02-09T19:46:24Z
<p>I am making a little calculator in C, and i want to pass simple arithmetic formulae to my program. But it really does not like me passing character '*' to my program.
Why not?
And how can I work around this without changing the asterix to something else?
Thanks</p>
http://stackoverflow.com/questions/2229498/if-c-does-not-support-passing-by-reference-why-does-this-work16If C does not support 'passing by reference', why does this work?aks2010-02-09T13:52:33Z2010-02-09T19:14:32Z
<p>If C does not support 'passing a variable by reference', why does this work?</p>
<pre>
/****************************************************************************
Query: If 'Pass by Reference' is not in C, why is this working?
****************************************************************************/
#include
int f(int *);
int main()
{
int i=20;
int *p = &i;
f(p);
printf("i=%d \n",i);
return 0;
}
int f(int *j)
{
(*j)++;
return 0;
}
</pre>
<p><b>Output: </b></p>
<pre>
bash-3.2$ gcc test.c
bash-3.2$ gcc -std=c99 test.c
bash-3.2$ a.exe
i=21
</pre>
http://stackoverflow.com/questions/2231477/calloc-inside-function1Calloc inside functionNinefingers2010-02-09T18:30:38Z2010-02-09T18:47:27Z
<p>Looking at this question that has just been asked: <a href="http://stackoverflow.com/questions/2231317/inconveniences-of-pointers-to-static-variables">http://stackoverflow.com/questions/2231317/inconveniences-of-pointers-to-static-variables</a> would doing something like this be considered bad practice, then?</p>
<pre><code>char* strpart(char* string, int start, int count)
{
char* strtemp;
int i = 0; int j = 0;
int strL = strlen(string);
if ( count == 0 )
{
count = strL;
}
strtemp = (char*) calloc((count + 1), sizeof(char));
for ( i = start; i < (start+count); i++ )
{
strtemp[j] = string[i];
j++;
}
return strtemp;
}
</code></pre>
<p>Sorry it's written quickly, but the basic principle is - when NOT using a static buffer inside a function is it bad practice to assign memory inside a function? I assume so because it wouldn't be freed, would it? Thought I ought to ask though.</p>
http://stackoverflow.com/questions/954953/who-is-responsible-for-determining-the-size-of-the-stack2who is responsible for determining the size of the stackrkheik2009-06-05T09:10:20Z2010-02-09T18:47:20Z
<p>Recently I made a program in c, which only purpose was to overflow the stack, using a recursive method.
Apparently there is no portable way(like a try / catch block, at least in c), to avoid that the next call to a function causes a stack overflow.
My question is, in your opinion, high-level languages should offer alternatives on resizing the stack, maybe a flag on the compiler, or these applications must be built with low-level languages.</p>
http://stackoverflow.com/questions/2227198/segmentation-fault-when-using-strtok-r2Segmentation Fault when using strtok_rScrub2010-02-09T06:24:18Z2010-02-09T18:40:02Z
<p>Can anyone explain why I am getting segmentation fault in the following example?</p>
<pre><code>#include <stdio.h>
#include <string.h>
int main(void) {
char *hello = "Hello World, Let me live.";
char *tokens[50];
strtok_r(hello, " ,", tokens);
int i = 0;
while(i < 5) {
printf("%s\n", tokens[i++]);
}
}
</code></pre>
http://stackoverflow.com/questions/2231326/c-puzzle-2-if-statement0c puzzle-2 (if statement) [closed]mr2010-02-09T18:10:12Z2010-02-09T18:36:29Z
<p>complete the if statement, required output is "MATT DAMON".</p>
<pre><code>if(?)
{
printf("MATT");
}
else
{
printf("DAMON");
}
</code></pre>
http://stackoverflow.com/questions/2226664/copying-a-string-in-c5Copying a string in Cchrisgoyal2010-02-09T04:03:14Z2010-02-09T18:31:05Z
<p>Hi,</p>
<p>I am confused about this code: (http://www.joelonsoftware.com/articles/CollegeAdvice.html)</p>
<pre><code>while (*s++ = *t++);
</code></pre>
<p>What is the order of execution? Is *s = *t first done, and then are they each incremented? Or other way around?</p>
<p>Thanks.</p>
<p>EDIT: And what if it was:</p>
<pre><code>while(*(s++) = *(t++));
</code></pre>
<p>and</p>
<pre><code>while(++*s = ++*t);
</code></pre>
http://stackoverflow.com/questions/578202/register-keyword-in-c6"register" keyword in C?Nick2009-02-23T16:12:43Z2010-02-09T18:20:49Z
<p>What does the register keyword do in C? I have read that it is used for optimizing but is not clearly defined in any standard. Is it still relevant and if so, when would you use it?</p>
http://stackoverflow.com/questions/2231211/c-programming-unicode-and-the-linux-terminal2C programming, unicode and the linux terminalsploit2010-02-09T17:52:45Z2010-02-09T18:20:34Z
<p>So what I'm trying to do is write Japanese characters to my terminal
screen using C and wide characters.</p>
<p>The question is whats wrong with what I'm doing so that I can fix it,
what other caveats should I expect while using wide characters and
do you have any other comments about what I'm trying to do?</p>
<p><br><br><br>
The bad code:</p>
<pre><code>#include <stdio.h>
#include <wchar.h>
int main( ) {
wprintf(L"%c\n", L"\x3074");
}
</code></pre>
<p>This doesn't work, but I want to know why.
<br><br><br></p>
<p>the problem only gets worse when I try to use a wchar_t to hold a value:</p>
<pre><code>wchar_t pi_0 = 0x3074; // prints a "t" when used with wprintf
wchar_t pi_1 = "\x3074"; // gives compile time warning
wchar_t pi_2 = L"\x3074"; // gives compile time warning
</code></pre>
<p>So I'd also like to make this work too, as I plan on having data structures
holding strings of these characters.</p>
<p><br><br><br>
Thanks!</p>
http://stackoverflow.com/questions/2228695/what-are-the-parameters-in-this-c-qsort-function-call2What are the parameters in this C qsort function call?moeness862010-02-09T11:37:04Z2010-02-09T18:09:14Z
<pre><code>qsort(bt->rw[t], bt->num[t],
sizeof(TRELLIS_ATOM *),
(int (*)(const void *,const void *))compare_wid);
</code></pre>
<p><code>bt->rw[t]</code> is a pointer to struct pointer, <code>bt->[num]</code> is an <code>int</code>, I don't understand what that fourth parameter is, except that compare_wid is a function defined somewhere as follows:</p>
<pre><code>static int compare_wid( TRELLIS_ATOM* a, TRELLIS_ATOM* b )
{
...
return x;
}
</code></pre>
http://stackoverflow.com/questions/2231055/real-time-embeddable-http-server-library-required1Real time embeddable http server library requiredHoward May2010-02-09T17:29:08Z2010-02-09T17:33:31Z
<p>Having looked at several available http servers I have not yet found what I am looking for and am sure I can't be the first to have this set of requirements. </p>
<p>I am adding an http API onto a real time system and I want an HTTP server with the following characteristics:</p>
<ol>
<li>Embeddable into an existing 'C' application</li>
<li>Small footprint; I don't need all the functionality available in Apache etc.</li>
<li>Efficient; will need to support thousands of requests a second</li>
<li>Allows asynchronous responses to requests; their is a small latency to responses and given the required request throughput a synchronous architecture is not going to work for me.</li>
<li>Support persistent TCP connections</li>
<li>Support use with Server-Push Comet connections</li>
<li>Open Source / GPL </li>
<li>support for HTTPS</li>
<li>Portable across linux, windows; preferably more.</li>
</ol>
<p>I will be very grateful for a recommendation</p>
<p>Best Regards</p>