#include <stdio.h> struct Example { int n; } e; void fun(struct Example); main() { e.n = 101; fun(e); printf("%d\n", e.n); } void fun(struct Example e) { e.n = 1; }
101
Previous Question Next Question
Your comments will be displayed only after manual approval.