Search Results

5
votes

Linux configuration file libraries

You could try glib's key-value-file-parser …
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] = …
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 …
2
votes

Do class/struct members always get created in memory in the order they were declared?

I cannot speak for C++, but in C the order is guaranteed to be the same order in memory as declared in the struct. …
28
votes

is f(void) deprecated in modern C and C++

In C, the declaration int f(void) means a function returning int that takes no parameters. The declaration int f() means a function returning int that takes any number of parameters. Thus, if you h …
0
votes

Is there something that I can do in C but I can’t do in C++ ?

C++ does not support named struct member initialization, in C you can do: struct { int x, y; } a = { .x = 3 }; You can also combine this with the feature shown by …