fork download
  1. struct Matrix
  2. {
  3. float initMatrix[4][4];
  4. };
  5.  
  6. int main()
  7. {
  8. Matrix m{ { { 1,2,3,4 },{ 5,6,7,8 },{ 9,10,11,12 },{ 13,14,15,16 } } };
  9. return 0;
  10. }
Success #stdin #stdout 0s 4528KB
stdin
Standard input is empty
stdout
Standard output is empty