Question: which option is the correct answer for c language coding? 1 Consider the following program: int x=200; int *p: p=&x; 4 (p) += 100; 2
1 Consider the following program: int x=200; int *p: p=&x; 4 (p) += 100; 2 3 What is happening on line 4? A. 100 bytes are being copied from location x to location p B. The pointer p is being adjusted to jump to a new location 100 bytes later C. The variable x-being pointed to by p - is being added with a value of 100 D. The "200" integer value is being moved to location 100 in memory B
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
