Β© 2026 Hedgehog Software, LLC
#include <stdio.h> int main(){ FILE *file = fopen("test.txt", "ab"); fwrite("hello world", 1,4, file); }
1
4