#include <stdio.h> void greet() { printf("Welcome to C programming!\n"); } int main() { greet(); greet(); return 0; }
Click Run to execute this code.