malloc( 5*sizeof(int) );. calls sizeof(int) , which returns the number of bytes needed to store a single int. This is then multiplied by ...
確定! 回上一頁