Strange characters in FORTRAN code output

Hi guys,

After compiling a .f90 code and executing it, i get strange characters in the output file like :

^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@^@

Are these windows characters? how can i get rid of this?

Much appreciated.

Paul

^@ is a binary 0, an ascii NUL character.

Why you're getting them in your output would depend on what's in your program. Please post your code.