What does ** do in C language? [duplicate]
In C arguments are passed by values. For example if you have an integer varaible in main int main( void ) { int x = 10; //… and the following function void f( int x ) { x = 20; printf( “x = %d\n”, x ); } then if you call the function in main … Read more