Skip to content

Instantly share code, notes, and snippets.

@LTe
Created April 27, 2010 23:41
Show Gist options
  • Save LTe/381508 to your computer and use it in GitHub Desktop.
Save LTe/381508 to your computer and use it in GitHub Desktop.
A = (Complex **) malloc(sizeof(Complex*) * n); // Alokowanie macierzy, wysokosc (tablica wskaznikow)
for(k=0; k<=n; k++)
*(A+k) = (Complex*) malloc(sizeof(Complex) * (m+1)); // Dolaczenia do kazdego elementu tablicy wskanikow, m wskaznikow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment