0
Code not working
My code was working and now giving error.... What's problem? https://code.sololearn.com/cnhg3RnTVXjw/?ref=app
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
+ 1
Prog is working
0
How to stop this?
0
They are used in Program.
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
0
Whitespace = 1;
It is the declaration
0
After removing them... Still giving error....
0
It works idk what's a password
0
Please am new here can u teach me
0
It check if entered password is strong or not
0
nilay doshi now working.