There was a big issue about libgcc not showing up, but I found a fake libgcc .deb file on the web, and ran dpkg fake-libgcc.deb on terminal. Now cydia thinks I have libgcc, and i went ahead and installed Gnu C Compiler.
Here's the catch: I'm getting a linker error and I don't know what it is. This is my code:
Code:
#include <stdio.h>
int main(int argc, char* argv[]){
printf("Hello World!\n");
if (argc > 1){
printf("You entered these things:\n");
int i = 1;
for (i = 1;i<argc;i++){
printf(argv[i], '\n');
}
}
return 0;
}
This is the error that I'm getting:

Is there anything that I can do about this?