What is the answer????? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 3

What is the answer?????

int age = 25; (age > 17 age < 99) printf("I can drive");

8th Apr 2020, 9:01 PM
TheJTwin
TheJTwin - avatar
4 Answers
+ 3
Hello TheJTwin Don't you think you can solve this question of you read the chapter about if else statements again? You solved so many courses. I don't understand the troubles you have with this question. Can you explain it to me? And please add the programming language.
8th Apr 2020, 9:23 PM
Denise Roßberg
Denise Roßberg - avatar
+ 2
int age = 25; if(age > 17 && age < 99) printf("I can drive") ; output: I can drive because 25 is in the range[17-99] hello this is the most basic thing taught in any programming language book, go back and learn the basic again, all the best.
8th Apr 2020, 9:45 PM
Rohit
+ 2
int age = 25; if (age > 17 && age < 99) printf("I can drive");
8th Dec 2021, 4:58 PM
Medhat Mohamed Ibrahim Abu Mandour
Medhat Mohamed Ibrahim Abu Mandour - avatar
0
int age=25; if(age>17 && age <99) printf("i can drive");
4th Apr 2023, 12:38 AM
keerthana kannan
keerthana kannan - avatar