Password Validation in C program | Explained in HINDI

Опубликовано: 01 Апрель 2026
на канале: Code Ambition 2K
4,298
63

/*********************PASSWORD 🔥 VALIDATION**************************\

A valid password is the one that conforms to the following rule:-

1. Minimum length is 5
2. Maximum length is 10
3. Should contain at least one number
4. Should contain at least one special character (such as @,#,$,&,etc)
5. Should not contain any spaces.

Example:-

input : "Codeambition"
output: FALSE

input: "Abhi kumar"
output: FALSE

input: "$code123"
ouput: TRUE
#StayWithMe
#CodeAmbition