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