// lab 1 practice 1 // Fill in the blanks (delete them) #include using namespace std; int main() { // make constant ___ string NAME = "Fred Flintstone"; // fill in the appropriate data types ___ age = 38; ___ gpa = 1.5; ___ grade = 'D'; ___ enrolled = true; cout << NAME << " who is " << age << " has a " << gpa << " GPA. his grade is " << grade << endl; return 0; }