Code has been added to clipboard!
Allocating Memory Arrays With Solidity
Example
pragma solidity >=0.4.16 <0.7.0;
contract C {
function f(uint len) public pure {
uint[] memory a = new uint[](7);
bytes memory b = new bytes(len);
assert(a.length == 7);
assert(b.length == len);
a[6] = 8;
}
}