#include <stdio.h> int main() { fun(); fun(); } void fun() { int k = 15; printf("%d ", k); static int L = 16; L = L + 1; printf("%d\n", L); }
15 1715 18
Previous Question Next Question
Your comments will be displayed only after manual approval.