2.
Trace the output
$\text{#include <conio.h>}$
$\text{#include <stdio.h>}$
$\text{void main() \{}$
$\text{int i = 0, k;}$
$\text{for (k = 5; k >= 0; k--) \{}$
$\text{i = i + k;}$
$\text{\}}$
$\text{printf("\%d\t", i);}$
$\text{getch();}$
$\text{\}}$
[5]