Created
April 27, 2010 23:41
-
-
Save LTe/381508 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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