LCD Display

I have a 16x2 LCD display and I have already declared it in the program using Lcd.Begin(16,2); . Now I want to print text at block 8,2. How do I do it?

By consulting the documentation that came with the LCD library.

Does a two line display have a block (8, 2) ?

When counting almost anything in C, the count starts with 0, not 1. Seems to me that means that, with a two row display, printing to an LCD display at column 8, row 2 is only visible on Alpha Centauri.

I meant that I wanted to print a custom text from the 8th column and 2nd row. How do I print that text?

The setCursor() function would seem to be a good place to start.