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