Answers for "fortran hello world code"

0

fortran hello world

Program hello
	implicit none
    character(11) :: WORD
    word="hello world"
    write(*,*) word
end program hello
Posted by: Guest on April-16-2021

Browse Popular Code Answers by Language