Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using fortran 11.0.035 compiler version on visual studio 2005. Please check the following code is giving wrong result for me. I am not getting the problem.

IF(IOCHK.NE.0)THEN  //this conditioin is true
cscl    begin pipewrite
cscl  PRINT 479,IOCHK
4791    Buffer=' '
WRITE(Buffer,479,ERR=99479,IOSTAT=iPipeErr)IOCHK

Above code in cludeds piping concept in client server programming, above code is from server side. client should give some information to the client but it is not sending information. So I am getting buffer data as empty.

for what IOCHK will be used? why i am unable to execute the above code successfully.

share|improve this question

1 Answer

IOCHK = I/O Channel Check, it's the interface for I/O error handling/detecting. In FORTRAN it's (likely to be) the I/O check switch. If it is set then some IO error occured.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.