Я использовал это -> fprintf(file, "\r\n");
, но не меняет строку.
У меня есть веб-сервер, написанный на c.После подключения я создаю html-файл с таким содержанием:
This file was saved at :Fri Apr 19 00:49:43 2019 (line break!)
Please click here.
Код:
file = fopen("testvideo.html", "w");
if (file == NULL)
{
/* File not created hence exit */
printf("Unable to create file.\n");
exit(EXIT_FAILURE);
}
time(&tv);
timestr = ctime(&tv);
fprintf(file, "<html> The file was saved at:</html>");
fprintf(file, timestr);
fprintf(file, "\r\n");
fprintf(file,"<html> Please click :<a href=\"http://whatevevevever.com/testvideo.mp3\"\>HERE<a></html>");
fclose(file);