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