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?