Search Results

3
votes

Is it true that there is no need to learn C because C++ contains everything?

Yes and no. As others have already answered, the language C++ is a superset of the language C, with some small exceptions, for example that sizeof('x') gives a different value. But …
3
votes

Inadvertent use of = instead of ==

Is this really such a common error? I learned about it when I learned C myself, and as a teacher I have occasionally warned my students and told them that it is a common error, but I have rarely se …
9
votes

Inadvertent use of = instead of ==

Simple answer: An assignment operation, such as x=y, has a value, which is the same as the newly assigned value in x. You can use this directly in a comparison, so instead of …
1
vote

Finding program code in memory with C

Usually C is compiled before running. This means that the source code is translated to executable machine instructions. So the source code is probably not available in memory when you run the progr …
2
votes

Constructor in C

Assuming that you want to do this in C, so your question isn't about structs in C++: What I usually do is that I just create a function, init_whatever, that takes a pointer to the struct (o …
3
votes

C math calculation not working as expected

Your mistake is that 9 / 100 is interpreted as integer division, and evaluates to 0 and not 0.09. You can write 9 / 100.0 instead, or rearrange the expression. …
0
votes

stack & realloc question C++

In response to your second code example: Yes, this is also illegal. myString is not allocated with malloc (or calloc), so it can't be reallocated with realloc, or freed with free. P …
0
votes

how badly can c crash?

A crash is not the worst thing that can happen. I read about an old Unix file compression program (you know, like Zip) that didn't check the return value from fclose. Yes, fclose can return …
1
vote

Is there an alternative way to free dynamically allocated memory in C - not using the free() function?

No. Only free will free memory. Concerning realloc, and if it can work like free: I interpret C99 as not saying that realloc(pt …
2
votes

Why are empty expressions legal in C/C++?

You want to be able to do things like while ( fnorble(the_smurf) == FAILED ) ; and not while ( fnorble(the_smurf) == FAILED ) do_nothing_ju …
4
votes

printf with sizeof on 32 vs 64 platforms: how do I handle format code in platform independant manner?

First of all, you should match the "%" specifier with the actual data type you want to print. sizeof returns the data type size_t, and just as you shouldn't try to …
2
votes

Array Size and Addresses in C

There is no guarantee that your variables are laid out in memory in any specific relationship to each other. Trying to change array[12] is undefined behavior. It might change y, it might crash your …
0
votes

C - How to locate temp files previously created by tmpfile() ?

Use threads instead of subprocesses? Put the names of the temporary files in another file? Don't use random names for the temp files, but (for example) names based on the pid of the parent process …
0
votes

IS Extendible program in C possible?

Do you need to be able to add these extensions to the running program, or at least after the executable file is created? If you can re-link (or even re-compile) the program after having added an ex …
3
votes

gets() does not work

When you read a number using scanf("%d", ....), the newline that you typed after the number is still there, waiting in the input buffer, when your program later gets to the …

1 2 3 next
15 30 50 per page