#include <stdio.h> void main() { void azzera_s(int *a) { *a=0; } int b=100; azzera_s(&b); printf("%d", b); }
To embed this project on your website, copy the following code and paste it into your website's HTML: