Advertisement
DrAungWinHtut

fileio_vs.c

Nov 16th, 2022
849
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5.     FILE* fp;
  6.  
  7.     fopen_s(&fp,"I:\\test\\hello.txt", "a");
  8.  
  9.     fprintf_s(fp, "\nUnity is Power");
  10.  
  11.     fclose(fp);
  12.  
  13.     return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement