#include "header.h"
double ii;
char c = 'x';
c = '''';
/*
Multi line comment, with embedded strange characters: < > &,
email address: testuser@example.com and even an URL:
http://www.example.com/index.html and a file name and a path:
<example.cpp> and </usr/local/example.h>.
Ending with an email address: username@example.com
Strange charavters: < > % \\ ' "
*/
for (int i = 1; i < argc; ++i) {
}
printf("\\ and \n");
// Single line comment in gcc C-code
/* Short comment */
return EXIT_SUCCESS;
}