C LINE APPENDRE LANGUE À FIMER

#include <stdio.h>

FILE *filePointer = fopen("test.txt", "a");

fputs("some text", filePointer);
florinrelea