Print

Print


Thanks to both of you, crazy thing I was actually reading Walt's book as a reference :).

Solved my problem by updating to gfortran 4.5 after a post I read in comp.lang.fortran, joining there right now.

Thanks again !

PS: I am actually a chemical engineer.

Regards
Claudio

2011/6/1 Dan Nagle <[log in to unmask]>
Hi,

Many folks on this list can help you, but please post
the actual input to the compiler and the error message
you get from the compiler.

Folks tend to be better with Fortran than they are as psychics.  :-)

I'm a PhD student, too.  I'm happy to help you.
I just don't know what "doesn't work" means.

You might also try the newsgroup comp.lang.fortran

HTH

On Jun 1, 2011, at 12:50 , Claudio Delpino wrote:

> Hello everyone, my name is Claudio. I'm a PhD student from Argentina. I am making my first learnings in fortran, and found this mailing list, although I'm inclined to think this is not the best place to ask newbie questions.
>
> That's why I wanted to ask you, is there any mailing list/forum where begginer fortran talk occurs ?
>
> I'm really sorry if this isn't a great place to ask newbie questions, but I'm having a bit of trouble with declaring an array of strings.
>
> What I would ideally need is an array of strings of different length. I have a feeling this is not possible.
> I've tried:
> character(len=:), allocatable, dimension(:) :: funciones
> to no avail
>
> But even if that's not possible, i'm not able to create a string array even expliciting the length of strings and the size of the array:
>
> character(len=90), dimension(3) :: funciones
>
> is also not working.
>
> What am I doing wrong ? And where can I read to understand why my futile attempts are not working, deep down to the basics (of course a mail explanation would also be appreciated :) )
>
> Thanks in advance for your help guys.
> Regards,
> Claudio
>
>