I have many times come across the statement char* ch = "hello";.
I understand that char* ch tells that ch is a pointer towards a char. But what does assigning hello to ch mean ?
I cannot undestand this ? please help.
|
feedback
|
|
It means | |||||||||
feedback
|
|
String literals are stored statically somewhere inside the program binary. They are most likely loaded into a readonly 'data' section in memory, but this is undefined behavior. Assigning a string literal simply passes the address of the first byte; in this case, Note: Modifying static strings is undefined behavior! While you can get a pointer, any assignment is dangerous. | |||
|
feedback
|
|
There are several things happening here.
| |||
|
feedback
|
|
the statement compiles to:
the string at 0x8048494 is "hello\0" as seen here from xxd:
| |||
|
feedback
|