0
What will return this function in the console?
int a(int numer){ Cout << numer << endl; Return numer;} Int main(){ Int n = 10; Int g = a(n); Cout << "numer: " << g << endl; return 0;} Console: numer: 10 Or Console: 10 numer: 10 ?
1 Answer
+ 3
it will say:
10
numer: 10