Sorry! Posting Assignment is allowed only for commercial accounts.
What is the output of following program?# include <stdio.h>void fun(int x){ x = 30;} int main(){ int y = 20; fun(y); printf("%d", y); return 0;}