fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void SumBigInt(int a[])
  5. {
  6. cout << sizeof(a) << endl;
  7. cout << sizeof(*a) << endl;
  8. }
  9.  
  10.  
  11. int main()
  12. {
  13. int a[10];
  14. SumBigInt(a);
  15. }
  16.  
Success #stdin #stdout 0s 4380KB
stdin
Standard input is empty
stdout
8
4