Write code to assign true to isTeenager if kidAge is 13 to 19 inclusive.
#include
#include
int main (void) {
bool isTeenager = false;
int kidAge = 0;
kidAge = 13;
/ * Your solution goes here * /
if (isTeenager) {
printf ("Teen/n");
}
else {
printf ("Not teen/n");
}
return 0;
}
+1
Answers (1)
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “C programming: Write code to assign true to isTeenager if kidAge is 13 to 19 inclusive. #include #include int main (void) { bool isTeenager ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Home » Computers & Technology » C programming: Write code to assign true to isTeenager if kidAge is 13 to 19 inclusive. #include #include int main (void) { bool isTeenager = false; int kidAge = 0; kidAge = 13; / * Your solution goes here * / if (isTeenager) { printf ("Teen/n");