CS205 S22 Assignment 1
Public Attributes | List of all members
matrix Struct Reference

Structure to store a matrix with integers. More...

#include <assign1_mat.h>

Public Attributes

int m_col
 number of columns in the matrix, aka. width
 
int m_row
 number of rows in the matrix, aka. height
 
size_t m_data_size
 number of bytes in the data zone, aka. m_col * m_row * sizeof(int)
 
void * m_data
 

Detailed Description

Structure to store a matrix with integers.

In this assignment, **int**s are stored in the matrix


The documentation for this struct was generated from the following file: