Skip to content
Snippets Groups Projects
Commit fd4619f3 authored by Pierre Graux's avatar Pierre Graux
Browse files

Init

parents
No related branches found
No related tags found
No related merge requests found
README 0 → 100644
Create html web page using C code
#include <stdio.h>
char* web_template = "<!DOCTYPE html>\n\
<html>\n\
<head>\n\
<title>C-generated web page</title>\n\
</head>\n\
<body>\n\
<p>This is an example of a simple HTML page generated with a C program.</p>\n\
</body>\n\
</html>\n\
";
int main(int argc, char* argv[]) {
printf("%s", web_template);
return 0;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment