#include "inc/tm4c123gh6pm.h" #include #include #include FILE *f_Write = NULL; char buf[512]; int main(void) { // here i tried by giving different paths by inserting USB(U:,U0:), SD card (M), and also with default drive and flash drive. f_Write = fopen("F:\\file4.txt","w"); if (!f_Write) return 1; fclose(f_Write); return 0; }