Re: About the instruction WRITE



but i mustn't see the character "1" right? it's a control character.
Does it allow me to go to a new page only with printers?

yes

My second question is: why when i write i string i have a space at the
ends? i mean:
WRITE (*,*) "Hallo"
give me:
Hallo
Can i delete the two spaces at the beging and end of the string?
Bye Aleramo.

output a test char like below which will show you there is no
space written at the end using list output

write (*,*) "Hallo","|"

write (*,'(a)') "Hallo"
has no spaces in its output


.