#include <stdio.h> main() { FILE *fp; fp = fopen("/tmp/test.txt", "w+"); fprintf(fp, "This is testing for fprintf... "); fputs("This is testing for fputs... ", fp); fclose(fp); } #https://moneyconvert.net/