Fill in the missing parts to print the values 1
(for true) and 0
(for false):
@(4) isCodingFun = true;
@(4) isFishTasty = false;
cout << @(11);
cout << @(11);
bool isCodingFun = true;
bool isFishTasty = false;
cout << isCodingFun;
cout << isFishTasty;