Other variables can be declared in the same row, just by separating them with a comma, 
not pointers. Pointers wont work when declaring them that way... even worse, they fail silently.
 Also, you can use chr() with a byte pointer variable alone, but if you append more numbers
the function gets broken.
    string s1 = "A"
    string s2 = "B"
    string s3 = "C"
    byte ptr p1
    byte ptr p2, p3  ' p3 pointer is broken.
     
    @p1 = StrPtr(s1) 
    @p2 = StrPtr(s2) 
    @p3 = StrPtr(s3)
    
    print chr(p1) chr(13, 10)
    print chr(p2) chr(13, 10)
    print chr(p3) chr(13, 10)
    
    ' print chr(p1, 13, 10) ' Compilation time error.