headroom-0.4.0.0: test-data/code-samples/c/sample1.c
/*
* This is header
*/
#include <stdio.h>
/* This is not header */
int main() {
// printf() displays the string inside quotation
printf("Hello, World!");
return 0;
/*
* block comment
*/
}