C
Programming and Technical
Programming
Program
In the following code;
include
main()
{ FILE *fp; fp= fopen("trial","r"); }
fp points to:
Read Solution (Total 4)
-
- open the trial file in read mode and fp points to first character position in trial.
- 10 years agoHelpfull: Yes(2) No(0)
- open the file trial and pointing the first character of the file
- 10 years agoHelpfull: Yes(1) No(0)
- ans is fp is point to trial file to read ( r) mode
- 10 years agoHelpfull: Yes(1) No(0)
- pointing the first character of the file
- 10 years agoHelpfull: Yes(0) No(0)
C Other Question