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

Post New Answer

More C Interview Questions

What do you mean by a local block?

0 Answers   InterGraph,


What do you understand by friend-functions? How are they used?

0 Answers   iNautix,


what is the difference between procedure oriented and object oriented progaming language

1 Answers  


How is a macro different from a function?

0 Answers   Tech Mahindra,


What are the main characteristics of c language describe the structure of ac program?

0 Answers  






Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above

0 Answers  


Are local variables initialized to zero by default in c?

0 Answers  


Explain how can I open a file so that other programs can update it at the same time?

0 Answers  


Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].

0 Answers  


What is null pointer constant?

0 Answers  


What does the format %10.2 mean when included in a printf statement?

0 Answers  


Linked lists -- can you tell me how to check whether a linked list is circular?

0 Answers  


Categories