C - Basics and Execution Environment
What will be the output of this C program?
Assuming
#include <stdio.h>
#include "greet.h"
int main() {
greet();
return 0;
}Assuming
greet.h contains:void greet() { printf("Hello!\n"); }