#include <stdio.h> void fun(int x); int main() { int num-5; fun(num); printf("num is %d",num); return 0; } void fun(int x) { x=x+7; return; }
To embed this project on your website, copy the following code and paste it into your website's HTML: