Sorry! Posting Assignment is allowed only for commercial accounts.
#include <stdio.h> void main() { y(); y(); } void y() { static int u = 2; --u; printf("%d", u);}