Create a registration form application by taking the
details like username, address,
phone number, email with password and confirm password
(should be same as
password).Ensure that the password is of 8 characters with
only numbers and
alphabets. Take such details for 3 users and display the
details. While taking input
password must appear as “****”.
No Answer is Posted For this Question
Be the First to Post Answer
What is #define used for in c?
Define C in your own Language.
What is a pointer?
What is a rvalue?
Explain how can I prevent another program from modifying part of a file that I am modifying?
Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return - 1. The function should not make use of any C library function calls.
3 Answers Google, Infosys, JTL, OpenFeel,
Can the curly brackets { } be used to enclose a single line of code?
What does c in a circle mean?
Why c is a procedural language?
Is main is user defined function?
What is mean by data types in c?
What is the output of below code? main() { static in a=5; printf("%3d",a--); if(a) main(); }