A.x=a + 1;
B.x=a, [0].
What for?
CodePudding user response:
Should be b option for,CodePudding user response:
# include & lt; stdio.h>
#include
Int (* x) [4], a [3] [4].
Int main () {
Printf (" typeid (x). The name () is % s \ n ", the typeid (x). The name ());//the typeid (x). The name () is an int (*) [4]
Printf (" typeid (a + 1). The name () is % s \ n ", the typeid (a + 1). The name ());//the typeid (a + 1). The name () is an int (*) [4]
Printf (" typeid (a [0]). The name () is % s \ n ", the typeid (a [0]). The name ());//the typeid (a [0]). The name () is an int [4]
return 0;
}
CodePudding user response:
Should be b option for,