How to add BOM to file using C

1.1k views Asked by At

how can i add Byte order mark (BOM) to output file using C?

my output file is ANSI as UTF-8 (which mean UTF-8 without BOM)

but i need it to be UTF-8 with BOM

how can i do that?

1

There are 1 answers

1
user2999200 On BEST ANSWER

the answer is

printf("\xef\xbb\xbf");