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