Topic: Test The "Code" Tag

/*Test Code*/

#include <stdio.h>

int main(int argc, char *argv[])
{
    char *hw = "Hello, world!\n";

    printf("%s", hw);

    return 0;
}