请大家帮忙看看我的程序
// 测试程序5.cpp : Defines the entry point for the console application.//
#include "stdafx.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
FILE *fptr;
int main(int argc, char* argv[])
{
int i;
char a[]="你这么牛逼,怎么不飞上天和太阳肩并肩呢?";
fptr=fopen("C:\\r.txt","w+");
for(i=0;i<strlen(a);i++)
{
fprintf(fptr,"%c\n",a[i]);
}
return 0;
}
我看了看我的文件夹,只看见一堆乱码全是问号,该怎么办啊?