1

Which roles are used when i call a function with pointer argument unless declare the function before? I know that float are promoted to double and that are executed the integral promotion, but what happens at the pointers?

Morris
  • 142
  • 1
  • 10

1 Answers1

4

Nothing. Default argument promotions don't apply to arguments of pointer type so they are left unchanged in type and value.

CB Bailey
  • 755,051
  • 104
  • 632
  • 656