/* * bc_00.c * * Description: A program that does nothing * Date: May 2022 * Author: Katia Bulekova * * To compile this code, execute at the command line: gcc bc_00.c */ /* This function has no input arguments and it does not return any value, which is indicated by a keyword "void" */ void main() { // The body of main function }