Current location - Plastic Surgery and Aesthetics Network - Plastic surgery and medical aesthetics - If an array is defined as int A [10] and I is an initialized integer, then the assignment expression equivalent to a[i]= 100 is a: a+I =100b: * (a+I) =100.
If an array is defined as int A [10] and I is an initialized integer, then the assignment expression equivalent to a[i]= 100 is a: a+I =100b: * (a+I) =100.
Unsigned int a [10];

Unsigned int I;;

I = 9;

A: A+I =100; //Error

b:*(a+I)= 100; //ok

c:(a+I)= 100; //Same as A.

d:& amp; a[I]= 100; //Error