Keywords are not functions. By putting parens next to keywords, keywords and function names adopt a similar look while they have completely different semantic meanings.
Example 3-4. Parenthesis Policy Example
if (condition)
{
}
while (condition)
{
}
strcpy(s, s1);
return 1;