Quiz

We'll cover the following...
Technical Quiz
1.

Have a look at the codes below. Which code shows the new syntax for writing if statements in C++17?

A.
if(var > 100; auto var = findValue()){...}
B.
if(auto var = findValue(); var > 100){...}
C.
int var = findValue();
if(var > 100){...}

1 / 3