fork download
  1. #include<stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int list[4]={12,22,32,42},*myptr;
  6. myptr=list;
  7.  
  8. printf("The result of *myptr++ is %d",*myptr++);
  9. printf("\nThe result of *(myptr++) is %d",*(myptr++));
  10. }
Runtime error #stdin #stdout 0s 1788KB
stdin
Standard input is empty
stdout
The result of *myptr++ is 12
The result of *(myptr++) is 22