单项选择题

若文本文件filea.txt中原有内容为:hello,则运行以下程序后,文件filea.txt中的内容为()
#include<stdio.h>
main()
EILE *f;
 f=fopen("filea.txt", "w");
 fprintf(f, "abc");
 fclose(f);

A. helloabc
B. abclo
C. abc
D. abchello