How many characters can we store on a double word

839 views Asked by At

I didn't understand the difference between strings with dword, word, qword, etc. I always use byte which can hold 1 byte, but when we want to use a string and not just a char, the assembler do it like {'a', 'b', 'c'} to represent a string just like C.

So when should I use for example dword when working with strings in assembly?

0

There are 0 answers