Search Results

1
vote

Guidelines to improve your code

I use PC-Lint on my C++ projects and especially like how it references existing publications such as the MISRA guidelines or Scott Meyers' "Effective C++" and "More Effective C++". Even if you are …
6
votes

Why do we need extern “C”{ #include <foo.h> } in C++?

In C++, you can have different entities that share a name. For example here is a list of functions all named foo: A::foo() B::foo() C::foo(int) …
3
votes

Embed data in a C++ program

You can always write a small program or script to convert your text file into a header file and run it as part of your build process. …
1
vote

cout prints “-0” instead of “0”

Take a look at this article: http://en.wikipedia.org/wiki/Floating_point. Note that there is a sign bit, even if the value …
3
votes

To STL or !STL, that is the question…

I think it's a typical build vs buy scenario. However, I think that in this case I would almost always 'buy', and use STL - or a better solution (something from Boost perhaps), before rolling my o …
1
vote

C++ #include semantics

I'll tackle the second part of your question: I normally use <project/libHeader.h> when I am including headers from a 3rd party. And "myHeader.h" when includ …
11
votes

What does this error mean: “error: expected specifier-qualifier-list before ‘type_name’”?

The compiler doesn't know that spe_context_ptr_t is a type. Check that the appropriate typedef is in scope when this code is compiled. You may have forgotten to include the appropriate header fil …
2
votes

Header Files in C and C++

Generally there will be one .h file for each .c/.cpp file. …
6
votes

Get optarg as a C++ string object

You told printf that you were suppling a c style string (null terminated array of chars) when specifying %s, but you provided a string class instead. Assuming you are using std::string try: …
1
vote

What’s the difference between C and C++

Another feature C++ has over C is exception handling in the form of throw ... catch. …
2
votes

What’s wrong with my file dependencies?

You need a forward declaration for class Foo. For more information refer to item 31 of "Effective C++, Third Edition". Note: if you forward declare Foo that means your class Moo will only be able …
1
vote

In case of integer overflows what is the result of (unsigned int) * (int) ? unsigned or int?

For C, refer to "Usual arithmetic conversions" (C99: Section 6.3.1.8, ANSI C K&R A6.5) for details on how the operands of the mathematical operators are treated. In your example the fol …
2
votes

How should I correct this code that causes “value computed not used” warning?

Initialize myMin and myMax with DBL_MAX and DBL_MIN respectively and get rid of the first time through the loop check. …
1
vote

Why do people use enums in C++ as constants while they can use const?

Some debuggers will show the enumeration name instead of its value when debugging. This can be very helpful. I know that I would rather see day_of_week = MONDAY than day_of_wee …
3
votes

Interesting Scope Problem, Explanation?

The scope of your second 'foo' starts at its declaration and continues until the end of the block it is declared in. When you call free(foo) it is acting on the first 'foo' because the second foo …

1 2 next
15 30 50 per page