• 2022-05-25
    有如下程序段:int arr[]={10,20,30},*ptr=arr;++*ptr;printf(“%d”,arr[0]);则执行上述程序段后输出结果为( )
    A: 10
    B: 20
    C: 11
    D: 21