Code:
#include<stdio.h>
#include<stdlib.h>
#include<wchar.h>

int wmain( ) 
{
	//wchar_t c;
	wchar_t c;

	FILE *fptr = fopen("c:\\Accountsout.txt","r");
	if(fptr == NULL) 
	{
		printf("Error");
		exit(1);
	}

	while( fwscanf( fptr, L"%C", &c ) != WEOF)
	{
			wprintf(L"%C \n",c);
	} 

	fclose(fptr);
	return 0;
}