Programming Linux
Courses
if
else
switch
while
for
do - while
break
continue
goto
googletest
About
Blog
Single statements terminated with “;”
;
a = 1; f(a);
Block (“compound statement”) is a group of statements ⟶ syntactically equivalent to a single statement
{ a = 1; f(a); }
Attention: no “;”