I can define a new variable like so msg db 'Hello, world!$', or another way msg2 db 'Hello, world!', 0
I know that the end of a string is determined using value 0 in memory. What is symbol $ standing for then?
How does a program determine the end of a string?
277 Views Asked by alexander.sivak At
1
There are 1 best solutions below
Related Questions in STRING
- SML - Find same elements in a string
- match hex string with list indice
- How can I determine the index of the same set of characters between two strings that are of different lengths?
- String.replace() isn't working like I expect
- How to do a case-insensitive string comparison?
- Trying to save an np array with string and floats, but getting a error
- String replace with integer not working
- How to calculate a length of array with out using library
- Java replace every Nth specific character (e.g. space) in String
- Split the strings into two parts Python
- Perl Regex: Merge multiple one-character substrings
- Squid S2275 does not know about format string argument indexes
- more efficient way of remove a few characters from the end of a string
- python member str performance too slow
- String.split() not behaving in android
Related Questions in ASSEMBLY
- (x64 Nasm) Writeline function on Linux
- Is the compiler Xcode uses to produce Assembly code a bad compiler?
- Why do we need AX instead of MOV DS, data directly with a segment?
- Bootloader in Assembly with Linux kernel
- How should the byte sequence 0x40 0x55 be interpreted by an x86-64 emulator?
- C++ code into assembly
- Drawing circles of increasing radius
- Assembly print on screen using pop ecx
- Equivalent to asm volatile in Gfortran?
- Show 640x480 BMP image with inline ASM c++
- Keep track of numbers entered in by a user in assembly
- 8086 Assembly Arrays with I/O
- DB ASM variable in Inline ASM C++
- What does Jump to means in callgrind?
- How to convert binary into decimal in assembly x8086?
Related Questions in MASM
- MASM console window creation troubles (maybe my stack frame??)
- Second conditional statement not working in assembly
- MASM SEG operator
- Converting User Chosen Base to Base 10 - MASM
- Displaying symbolic constants in Assembly Language
- MASM - Macro variable?
- Assembly Homework Assignment
- Assembly application doesn't work when assembled on NASM
- Running asm procedure in cpp file
- Creating and save text file in assembly
- Making assembly function inline in x64 Visual Studio
- Calling a masm function from cpp
- error: invalid instruction operand (on .ENDW)
- Decimal value in masm32
- How to multiply two float variables in masm
Related Questions in C-STRINGS
- Converting long double to CString
- C program Strings Example how come the result is 98?
- Copy vector<char> into char*
- C - Simple Linked List program that handles strings
- c reading and writing strings visual studio 2013
- C character array and its length
- Why gets() is deprecated?
- C++ : Dynamic C-String Usage in ifstreamObject.getline(c string, char limit)
- Why does my variable change after strtok() and fgets() without modifying it?
- how do I delete allocated memory and still return its value from method
- How to read string until two consecutive spaces?
- Reading different types in C from File
- Differences between single-quotes and double-quotes in C
- C++ Difference between new char[size] and new char[size]()
- How to evaluate tokens in C?
Related Questions in NULL-TERMINATED
- Using std::string_view with api that expects null-terminated string
- c++ null terminated array of objects
- How to catch an error with a character string not containing a null terminator
- \0 character in istream::getline()
- Copying a string with nulls inside
- how to null terminate a string in assembly language?
- c_str() returns nothing, but string not empty
- if I initialize a char array to zero/{0} do I have to null terminate?
- How does a program determine the end of a string?
- Different results when printing '\0' on different PCs?
- A bunch of questions about C++'s cstring
- C++ std::istringstream how to not terminate at '\0'
- What is the difference between '\0' and "\0" in C++ string
- Does a const char* literal string persistently exist as long as the process alive?
- How can I set the length, when creating a BSTR (using _bstr_t wrapper) by a native string?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It depends on the program. A good program would do something like (NASM syntax):
..and would keep track of string length/s during any modifications (append, truncate, concatenate, etc) so that it always knows the length of strings with almost no overhead at all.
A "less good" program might put the string's length at the beginning of the string. This is something that was done by some old programming languages (e.g. Pascal). This causes problems when you want to work with overlapping strings (e.g. if
string2is the last half ofstring1then you can't save memory by making the strings overlap in memory because you'd have to insert a length at the start ofstring2that would corrupt the middle ofstring1).A "less good" program might also waste CPU time searching the string looking for some kind of terminator (where how bad it is depends on how long the string is - extremely bad for extremely long strings). For MS-DOS that terminator is a
'$'character (which makes it extra silly/annoying if you want to have a'$'character in the middle of the string), and for most other cases (e.g. C programming) it's a zero (null character).Of course for assembly language you can mostly do whatever you like (and can write a good program); until you have to use code that someone else wrote (e.g. MS-DOS API, or code written in some other language).