//Welcome program// #include <stdbool.h> #include <stdio.h> #define STRING "WELCOME!" int main (){ bool enterSite; enterSite = true; if (enterSite){ printf(STRING); } return 0; }