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