#include <stdio.h> static int var = 15; void main() { var = 19; { int var = 14; } printf("%d", var); }
19
Previous Question Next Question
Your comments will be displayed only after manual approval.