#include void PrintMessage(void); int main(){ PrintMessage(); return 0 ; } void PrintMessage(void){ printf("A MSG :\n\n"); printf("Nice day!\n"); }