1.
Why do we need a break and continue statement? Define formal argument and actual argument in function with examples. Identify and list the errors in the following code.
$\text{int main()\{} $
$\text{int a,b,c} $
$\text{scanf("\%d\%d\%d, \&a, \&b, \&c);}$
$\text{sum(a, b, c);}$
$\text{return -1;}$
$\text{\}}$
$\text{void sum(int x, int y, int z)\{}$
$\text{int sum;}$
$\text{sum = a + b + c;}$
$\text{return sum;}$
$\text{\}}$
[10]