Gist of files for lab0x06 Isaiah Keting
Gist files for lab0x05 Isaiah Keating
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <time.h> | |
| #include <unistd.h> // for usleep -- only on linux | |
| // defines the max num of rows&cols | |
| #define MAXROWS 200 | |
| #define MAXCOLS 200 | |
| void printTableOfInts(int table[MAXROWS][MAXCOLS], int nRows, int nCols) |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <time.h> | |
| # include "gfx2.h" | |
| # include "myGfxShapesLib.h" | |
| #include <unistd.h> | |
| int main(int argc, char *argv[]) | |
| { |
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
| /* | |
| Isaiah Keating | |
| csc250DT2 | |
| Lab0x04-p4--plotMath | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <time.h> |
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
| /* | |
| Isaiah Keating | |
| csc250DT2 | |
| Lab0x04-p3--creativeLines | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <time.h> |
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
| /* | |
| Isaiah Keating | |
| csc250DT2 | |
| Lab0x04-p2--testDrawLinesFunction | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <time.h> |
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
| /* | |
| Isaiah Keating | |
| csc250DT2 | |
| Lab0x04-p1--chartFromFile | |
| */ | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <time.h> | |
| # include "gfx2.h" |
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
| # include <stdio.h> | |
| # include "gfx2.h" | |
| # include "myGfxShapesLib.h" | |
| char h; | |
| int main(int argc, char* argv[]) | |
| { | |
| double cmdLineDataValues [100];//dont use more than one hundred cmd line args | |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <time.h> | |
| # include "gfx2.h" | |
| # include "myGfxShapesLib.h" | |
| void printListOfDoubles(double *list, int length) | |
| { |