Read And Write ini's? November 10, 2009 03:16AM | Registered: 13 years ago Posts: 44 |
Re: Read And Write ini's? November 10, 2009 04:22AM | Registered: 14 years ago Posts: 175 |
Re: Read And Write ini's? November 11, 2009 06:00AM | Registered: 14 years ago Posts: 234 |
Quote
AllRight
what would the code be to say, add the line "test", at the end of the file
FILE* fp; fp = fopen("sd:/thefile.ini", "a"); //"a" is for append fprintf(fp,"\ntest"); fclose(fp);