Hello world in C to check if the syntax highlighter is working.
#include <stdio.h> void hello() { // A function to say hello just because. printf("Hello World!\n"); } // Main function int main(void) { hello(); return 0; }