/* * bc_01_hello.c * * Description: Simple C program that prints greeting "Hello, world!" * Date: May 2022 * Author: Katia Bulekova * * To compile this code, execute at the command line: gcc bc_01_hello.c -o bc_01_hello */ #include int main() { printf("Hello, world!\n"); return 0; }