Discussion :: Testing New
-
Which of the following statements are true after execution of the program.
void main()
{
int a[10], i, *p;
a[0] = 1;
a[1] = 2;
p = a;
(*p)++;
}
Answer : Option B
Explanation :
Explanation Not Provided
Be The First To Comment