Code not working | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Code not working

My code was working and now giving error.... What's problem? https://code.sololearn.com/cnhg3RnTVXjw/?ref=app

25th Mar 2020, 2:35 PM
C ++
C ++ - avatar
11 Answers
+ 2
In Visual Studio it is working fine... I don't get that, why it is not working here... Now I have removed the variable... I created this for some purpose but now I don't remember what was that... Thanks for help
25th Mar 2020, 5:17 PM
C ++
C ++ - avatar
+ 1
Prog is working
27th Mar 2020, 2:31 PM
nilay doshi
nilay doshi - avatar
0
How to stop this?
25th Mar 2020, 3:07 PM
C ++
C ++ - avatar
0
They are used in Program.
25th Mar 2020, 3:10 PM
C ++
C ++ - avatar
0
if(isspace(input[counter])) { whitespace = 0; return false; } if( ispunct(input[counter]) ) { symbbol = 1; counter++; continue; } if( isdigit(input[counter]) ) { digit = 1; counter++; continue; } if (isalpha(input[counter])) { alpha = 1; counter++; continue; } counter++; } if ((symbbol == 0) || (digit == 0) || (alpha == 0)) { return false; } else { return true; } } Here theery used
25th Mar 2020, 3:17 PM
C ++
C ++ - avatar
0
Whitespace = 1; It is the declaration
25th Mar 2020, 4:11 PM
C ++
C ++ - avatar
0
After removing them... Still giving error....
25th Mar 2020, 4:13 PM
C ++
C ++ - avatar
0
It works idk what's a password
26th Mar 2020, 6:34 PM
DrNefardio
DrNefardio - avatar
0
Please am new here can u teach me
27th Mar 2020, 9:03 AM
Revision De Khi Gee
Revision De Khi Gee - avatar
0
It check if entered password is strong or not
27th Mar 2020, 11:27 AM
C ++
C ++ - avatar
0
nilay doshi now working.
28th Mar 2020, 2:40 AM
C ++
C ++ - avatar