/* #include void add(int* x) { *x = 100; printf("%d\n", *x); } int main() { int x; x = 2; printf("%d\n", x); add(&x); printf("%d\n", x ); return 0; } */ /* #include void func(int* x) { x[0] = 10; } int main() { int ar[5] = {1, 2, 3, 4, 5}; printf("%d\n", ar[0]); func(ar); printf("%d\n", ar[0]); return 0; } */ /* #include void swap( int a, int b ) { int t; t = a; a = b; b = t; } int main() { int ..