#include <stdio.h> void greet(char name[]) { printf("Hello, %s!\n", name); } int main() { greet("Aisha"); greet("Bruno"); return 0; }
Click Run to execute this code.