fork download
  1. #include <stdio.h>
  2.  
  3.  
  4.  
  5. int SplitLineByBlank(char (*Dummy)[50][50], char* Line, int StartIndex, int EndIndex, int LineLength)
  6. {
  7. printf("Zeigergröße:%zu Inhaltgröße:%zu", sizeof(Dummy),sizeof(*Dummy));
  8. return 0;
  9. }
  10.  
  11. int main()
  12. {
  13. char Dummy[50][50];
  14. SplitLineByBlank(&Dummy, 0, -1, -1, 250);
  15. return 0;
  16. }
  17.  
Success #stdin #stdout 0s 10304KB
stdin
Standard input is empty
stdout
Zeigergröße:8 Inhaltgröße:2500