Teaching Rajasthan Basic Computer Instructor 2021 Mock Test Programming and Data Structure Programming in C
If value of p is 10 then what is the value of m+n:
{
int m = ++p;
int n = p--;
}
1
22
2
20
3
21
4
19
If value of p is 10 then what is the value of m+n:
{
int m = ++p;
int n = p--;
}