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