Pelles C forum

C language => Expert questions => Topic started by: Emil_halim on February 21, 2017, 07:45:06 PM

Title: multi symbols in expression
Post by: Emil_halim on February 21, 2017, 07:45:06 PM
Hi All

what is the solution of next code

Code: [Select]
_asm{
  lab1:
      db 'some text',0
  lab2:
     db 'an other one',0

  len: db lab2 - lab1
}


any help please?