What is the output of the following code? #includeint test(i…
What is the output of the following code? #includeint test(int);int main(int argc, char* argv[]){ int num = test(4); printf(“%d\n”, –num); return 0;}int test(int num){ return num++;}
Read Details