/* includes and macros */ // required for input / output with minGW GCC #include <stdio.h> #define printf __mingw_printf /* global declarations */ int *start, *finish, *cursor, *finish2; /* f
/* includes and macros */ // required for input / output with minGW GCC #include <stdio.h> #define printf __mingw_printf /* global declarations */ static short n, m; /* function prototypes *
Hey guys, just going to start off by saying I'm rather new to C. My problem is that I wrote this program for uni homework, but instead of getting eleven results printed out, I only get one. For insta…