有如下程序: #include <stdio.h> m

有如下程序:

 #include <stdio.h> 
 main() 
 { 
 int a=0,*ptr;
  ptr=&a;
   *ptr=3;
    a=(*ptr)++;
    printf("%d,%d\n",a,*ptr); 
  }

程序运行后的输出结果是( )。

答案
A

题目信息

题号:4320
题型:单选题
难度:普通