Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~163 People Reached
About Me

Student. Nerdy(but like to believe that i m cool). Love geeky bags, vanilla and mornings(yes, even monday mornings)...

Favorite Forums
Favorite Tags
c++ x 3
Member Avatar for blahhaha

Hello everyone, I just wrote a source code in C++ and compiled it successfully but every time i try to run it, it gives me a linker error. ie: Linker error: Unable to open file 'TCDEF.EXE'. Please help. Blahhaha

Member Avatar for jonsca
0
41
Member Avatar for blahhaha

I am trying to create a sudoku generator in turbo c++ for a project. This code is not working for some reason....Please help! [code] #include<iostream.h> #include<conio.h> #include<stdlib.h> int chkcol(int u[x][y]); int chkrow(int v[x][y]); int chkbox(int w[x][y]); void main() { textcolor(WHITE); textbackgroundcolor(MAGENTA); clrscr(); int sudoku[9][9]; for(int i=0; i<9; i++) { for(int …

Member Avatar for WaltP
0
122