Suppose you want to print a variable:
DECLARE @testVar char ( 16 )
print N'"' + @testVar + '"'
You'll get blank lines because @testVar is NULL. (To be complete: this depends on SET CONCAT_NULL_YIELDS_NULL .)
A possible solution:
print N'"' + isnull(@testVar, '') + '"'