up vote 3 down vote favorite
1
share [g+] share [fb]

What is meant by . (dot) usage after a number in Fortran code?

For example:

x=a+b+45.-c-d

thanks in advance

link|improve this question
Wow, a fortran question! – DigitalRoss Oct 23 '09 at 7:17
2  
@Greg Hewgill: So why haven't you voted to close? – ire_and_curses Nov 3 '09 at 5:00
feedback

1 Answer

This means that it's a floating point constant, not integer. 45. is a shorter way to write 45.0.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown