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