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 a void pointer?
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side? Upload a C program to demonstrate the behaviour of the game.
Bit swapping
what is inline function?
write a program in c language for the multiplication of two matrices using pointers?
char ch="{'H','I',0};printf("%s",ch);what is output
write a c program for swapping two strings using pointer
What is a const pointer?
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
what is data structure?
What is a void pointer in c?
Can you please explain the difference between syntax vs logical error?