13.0k views
1 vote
Write an expression that will cause the following code to print "less than 20" if the value of user_age is less than 20.

1 Answer

5 votes

Answer:

if (user_age < 20) {

printf("less than 20");

}

User Ympostor
by
7.0k points