245,505 views
8 votes
8 votes
Write an expression that will cause the following code to print "less than 20" if the value of user_age is less than 20.

User TomDK
by
2.3k points

1 Answer

13 votes
13 votes

Answer:

if (user_age < 20) {

printf("less than 20");

}

User Cvetelina
by
2.9k points