Search Results

0
votes

Can a recursive function be inline?

"How does the compiler decide whether to inline a function or not ?" That depends on the compiler, the options that were specified, the version number of the compiler, maybe how much memory …
0
votes

Malloc Error: incorrect checksum for freed object

Do nlines and numlines have the same value? Does the caller of insert_line allow room for the trailing NUL when passing the length in the second parameter? …
1
vote

Including one C source file in another?

The C language doesn't prohibit that kind of #include, but the resulting translation unit still has to be valid C. I don't know what program you're using with a .prj file. If you're using …
4
votes

what is the difference between c and embedded c?

In the C standard, a standalone implementation doesn't have to provide all of the library functions that a hosted implementation has to provide. The C standard doesn't care about embedded, but ven …
0
votes

Malloc Error: incorrect checksum for freed object

I agree with remo's suspicion about those two lines, but not the tangent that remo went off on. We should share credit for finding this bug. *(lines + slot) = some value if((lines …
-1
votes

Are Thread Input queues global?

There's an API that will let you merge your spyware's input queue with the user's banking application. This kind of thing is gradually getting closed down. …
0
votes

Why this union is deleting the 1st records in arrays in the c code?

Do you know what union means in C? Your union doesn't have 3 members. Your union has 4 members. Among those 4 members, how many do you want to store values in? Why didn't you ask your TA …
0
votes

function pointers

Did you find some compiler that would compile it? Ordinarily to make a call through a function pointer variable, you have to define a function as a function, and assign the address of that …
0
votes

Solution for “dereferencing `void *’ pointer” warning in struct in C?

Your expression (CMNCNT *)&cmncntin[ii*cmncnt_elmsize] tries to take the address of cmncntin[ii*cmncnt_elmsize] and then cast that pointer to type (CMNCNT *). …
1
vote

What is __stdcall?

I agree that all the answers so far are correct, but here is the reason. Microsoft's C and C++ compilers provide various calling conventions for (intended) speed of function calls within an applic …
1
vote

Writing a while loop in the C preprocessor

Here's an abuse of the rules that would get it done legally. Write your own C preprocessor. Make it interpret some #pragma directives the way you want. …
0
votes

Bug fixed with four nops in an if(0), world no longer makes sense.

Break out that one function into a separate .c file (or .cpp or whatever). Compile just that one file with the nops and without them, to .s files and compare them. Try an old version of gc …
0
votes

char array to LPCTSTR conversion in c

"Does anyone know how to convert a char array to a LPCSTR in c?" You don't have to do anything at all. It automatically converts to that type (except in initializers and sizeof). "C …
9
votes

Why use C?

"why we are using C language for writing drivers and OS codes.?" So that programmers won't have to learn new syntax of each new assembly language for each new kind of machine. "Is t …
0
votes

How can I take a screenshot and save it as JPEG on Windows?

libjpeg is free, open source, coded in C. You can copy their code into yours. http://sourceforge.net/ …

1 2 next
15 30 50 per page