Search Results

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. …
0
votes

Finding the name of a variable in C

The person asking the question (was it an interview question?) may have been trying to get you to differentiate between using #define constants versus enums. For example: #define Z …
2
votes

Printing leading 0’s in C?

printf allows various formatting options. ex: printf("leading zeros %05d", 123); …
1
vote

Learn C first before learning Objective-C

According to Wikipedia, Objective-C is a strict super-set of C. This being the case, I would suggest learning C first. Then wh …
3
votes

C Arrays and unbroken lists

One problem you have is that you compare count with 3 too early. Wait until you see a change in the bitstream. Try a while loop until the bit flips then compare the count. …
10
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. …
0
votes

function pointers callbacks C

Registering a callback means that you are specifying which function should be called when the event of interest occurs. Basically you are setting the function pointer when registering a callback. …
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. …
0
votes

What’s the most efficient way to make bitwise operations in a C array

Iterate over each array in a loop applying the desired operator and storing the result in a new array. …
2
votes

How to avoid code duplication between similar ISRs?

If they are handling the same type of device it's quite reasonable to have just one interrupt handler handling multiple interrupts. You could check which flag was set at the top and continue on fr …
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 …
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
vote

Two C syntax tidbits: no init for and char *w[4] vs char w[4]

There is nothing special about a for loop without an initial condition. The condition will still be checked at the beginning of each loop to determine if it should continue and the last expression …