On building getting error:
Building Ram.exe.
POLINK: error: Unresolved external symbol '__penter'.
This one is easy ... go into Project -> Project Options -> Compiler and uncheck "Enable hook function call"
POLINK: error: Unresolved external symbol '_WinMain@16'.
Are you building a gui program or a console program?
For a console program...
Project -> Project Options -> Linker -> Subsystem = Console.
For a windows gui program...
Add WinMain() as your entry proint function.
Details at help -> Contents -> Appendix -> Program Startup, the main and WinMain functions.
When i use:
for ( j = 0; j <= (3–i); j++ ){
getting below on same above line:
E:\tech\bobbleSort.c(18): error #2036: Invalid character: '\x2013'.
E:\tech\bobbleSort.c(18): error #2001: Syntax error: expected ')' but found '-i'.
E:\tech\bobbleSort.c(18): error #2001: Syntax error: expected ';' but found '-i'.
E:\tech\bobbleSort.c(18): error #2048: Undeclared identifier '-i'.
E:\tech\bobbleSort.c(18): error #2001: Syntax error: expected ';' but found ')'.
The error causing this is most likely a missing brace higher up in your program.
To give you a proper answer we will need to see your source code.