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