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
~187 People Reached
Favorite Forums
Favorite Tags
c x 1
Member Avatar for khoo_jun

i have problem that the the loop to check if a digit is correct but not at the right place. then print. void feedback( char random[4], char guess[5]) { int i; for(i=0; i<4; i++) { if(guess[i]==random[i]) { printf("#"); } } if((guess[0]==random[1]||guess[0]==random[2]||guess[0]==random[3])&&guess[0]!=random[0]) { printf("*"); } if((guess[1]==random[0]||guess[1]==random[2]||guess[1]==random[3])&&guess[1]!=random[1]) { printf("*"); } if((guess[2]==random[0]||guess[2]==random[1]||guess[2]==random[3])&&guess[2]!=random[2]) { …

Member Avatar for WaltP
0
187