I am new to C and i have this question. why does the following code crash:
int *a = 10;
*a = 100;
|
1
|
|
|
|
|
|
Because you are trying to write 100 to the memory location 0x0000000A which is probably not allocated to your program. That is,
does not mean that the pointer 'a' will point to a location in memory having the value of 10. It means it is pointing to address 10 (0x0000000A) in the memory. Then, you want to write something into that address, but you don't have the "rights" to do so, since it is not allocated You can try the following:
This would work, although horribly inefficient. If you only need a single int, you should just put it into the stack, not the heap. On a 32-bit architecure, a pointer is 32 bits long, and an int is 32 bits long too, so your pointer-to-an-int structure takes up (at least) 8 bytes of memory space this way instead of 4. And we haven't even mentioned caching issues. |
|||
|
|
|
|
You could also write it as:
Note the different spacing on the first line. It's not a popular style, but I personally think it's clearer. It has exactly the same meaning to the compiler. Then, read it out loud:
Substituting the actual value:
... at which you realise that 10 is unlikely to point to a piece of memory you can use. You would pretty much never assign to a pointer with a literal:
I guess there might be some very low level jobs where you directly specify absolute memory addresses. Kernel implementation for example? |
||
|
|
|
|
Okay, trying to give the simplest explanation today, while trying to give you more detailed picture about it all. Lets add some parentheses shall we?
You attempt to write four bytes into the address-range [10-13]. The memory layout of your program starts usually higher, so your application does not accidentally overwrite anything from where it could and still function (from .data, .bss, and stack for instance). So it just ends up crashing instead, because the address-range has not been allocated. Pointer points to a memory location and C static typing defines a type for a pointer. Though you can override the pointer easily. Simply:
Here we go further to things. What is a null pointer? It's simply pointer that points to address 0. You can also give a struct type for your pointer:
Ok, what is malloc? Malloc allocates memory and returns a pointer to the allocated memory. It has a following type signature:
If you do not have a conservative garbage collector, it is likely that your memory won't end up being freed automatically. Therefore, if you want to get the memory back into use from what you just allocated, you must do:
Each malloc you do has a size-tag in it, so you do not need to state the size of the chunk you pointed for free -routine. Ok, yet one thing, what does a character string look like in memory? The one similar to "Cheery" for instance. Simple answer. It's a zero-terminated array of bytes.
|
||||||||
|
|
|
I would like to propose a slight change in the use of malloc(), for all the answers that suggest using it to allocate memory for the int. Instead of:
I would suggest not repeating the type of the variable, since that is known by the compiler and repeating it manually both makes the code more dense, and introduces an error risk. If you later change the declaration to e.g.
Without changing the allocation, you would end up allocating the wrong amount of memory ( in the general case, on 32-bit machines
This simply means "the size of the type pointed at by a", in this case Also note that no parenthesis are needed with |
||
|
|
|
|
It's probably crashing because you are assigning the pointer to some part of memory which you don't have access to and then you're assigning some value to that memory location (which you're not allowed to do!). |
||
|
|
|
|
The following line,
defines a pointer to an integer a. You then point the pointer a to the memory location 10. The next line,
Puts the value 100 in the memory location pointed to by a. The problem is:
|
||||||
|
|
|
Does this code even compile? 10 isn't convertible to an
In that case, you're trying to write 100 into the memory address at 10. This isn't usually a valid memory address, hence your program crashes. |
||
|
|
|
Because You declare a pointer to int, initialize the pointer to 10 (an address) and then try to assign a value to an int at this address. Since the memory at address 10 does not belong to your process, You get a crash. This should work:
|
|||
|
|
|
|
Because you've never allocated any memory for a. You've just allocated some stack space for a pointer to a.
int *a = NULL;
a = malloc (sizeof (int));
if (a != NULL)
{
*a =10;
}
Will work. Alternatively you could give a the address of some existing variable, which would work as well. i.e. int a* = NULL; int b = 10; a = &b; This will now mean that doing something like *a = 100; will also set b to be == 100 Check out this: http://home.netcom.com/~tjensen/ptr/pointers.pdf |
||
|
|
|
|
You need to assign the pointer to a memory location, not arbitrary value (10).
See my answer to another question, about being careful with C. |
|||
|
|