Search Results

1
vote
4answers
459 views

When zeroing a struct such as sockaddr_in, sockaddr_in6 and addrinfo before use, which is correct: memset, an initializer or either?

Whenever I look at real code or example socket code in books, man pages and websites, I almost always see something like: struct sockaddr_in foo; memset(&foo, 0, sizeof foo); / …
5
votes

Manpage scandir() prototype weirdness

Actually, there's no such constraint that you can't pass a pointer to an inline function. The inline keyword serves only as a hint to the compiler to inline calls when it can. The problem i …
2
votes

Odd compile error in C: creating arrays

It looks fine to me, and I got no such warning. What compiler and flags did you use? For reference, I used: gcc -c foo.c -Wall -ansi -pedantic -W -Wextra Where foo.c contained: …
5
votes

Linux configuration file libraries

You could try glib's key-value-file-parser …
7
votes

Does ANSI C support signed / unsigned bit fields?

The relevant portion of the standard (ISO/IEC 9899:1999) is 6.7.2.1 #4: A bit-field shall have a type that is a qualified or unqualified version of _Bool, signed int, unsig …
126
votes

How do I check if an integer is even or odd?

Use the modulo (%) operator to check if there's a remainder when dividing by 2: if (x % 2) { /* x is odd */ } A few people have criticized my answer above stating …
2
votes

How to join a thread that is hanging on blocking IO?

I think, as you said, the only way would be to send a signal then catch and deal with it appropriately. Alternatives might be SIGTERM, SIGUSR1, SIGQUIT, SIGHUP, SIGINT, etc. You could also …
6
votes

What should main() return in C/C++?

The accepted answer appears to be targetted for C++, so I thought I'd add an answer that pertains to C, and this differs in a few ways. ISO/IEC 9899:1989 (C90): main should be decla …
2
votes

Fastest way to do a case-insensitive substring search in C/C++?

Why do you use _strlwr(string); in init_stristr()? It's not a standard function. Presumably it's for locale support, but as it's not standard, I'd just use: char_table[i] = …
3
votes

Converting a string of numbers into integers

The answers given so far are correct, as long as your string is formatted the way you expect. You should always check the return value of sscanf to make sure things worked okay. sscanf returns the …
14
votes

So you think you know pointers?

The output is undefined behavior because %p requires that the pointer be cast to void * since other pointer types might not have the same size and representation as void * …
4
votes

strdup() - what does it do in C?

No point repeating the other answers, but please note that strdup() can do anything it wants from a C perspective, since it is not part of any C standard. It is however defined by POSIX.1-2001. …
4
votes

Why doesn’t anyone upgrade their C compiler with advanced features?

This "feature" will never be adopted by future C standards for one reason only: it would badly break backward compatibility. In C, struct tags have separate namespaces to normal id …
4
votes

What are some good resources for learning C beyond K&R

Try C: A Reference Manual by Harbison and Steele. It covers the ISO/IEC 9899:1999 (C99) standard that is more recent that K&R's la …
4
votes

What is the advantage of strlmove vs strmove in C?

strmove, strlmove, strlcpy, strlcat are all not standard C functions, so I can't comment on what they do without knowing which specific non-standard library you're using. Standard …

1 2 3 next
15 30 50 per page