fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a = 9;
  5. int b = 3;
  6. int *p = &b;
  7. int c = a / (*p);
  8. printf("%d \n", c);
  9. }
  10.  
  11. //https://pt.stackoverflow.com/q/43250/101
Success #stdin #stdout 0s 9424KB
stdin
Standard input is empty
stdout
3