# include <stdio.h>
main()
{
	FILE *fp;

	if( (fp=fopen("junk.out","w")) == NULL){
		fprintf(stderr,"error: cannot open file junk.out\n");
		return(1);
	}
	fprintf(fp,"hello\n");
	return(0);
}
