以下程序用来判断指定文件是否能正常打开,请填空
#include <stdio.h>
main( )
{FILE *fp;
if (((fp=fopen(“test.txt”,”r”))==【13】))
printf(“未能打开文件!\n”);
else
printf(“文件打开成功!\n”);