write a c program to Create a registration form application
by taking the details like username, address,
phone number, email along 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 5 users and display the details. In place of
password display “****”. (Use Structures).


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Code Interview Questions

To Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates. String contains only lowercase characters ['a'-'z']

0 Answers  


Write a c program to search an element in an array using recursion

1 Answers   Wipro,


main() { printf("%x",-1<<4); }

3 Answers   HCL, Sokrati, Zoho,


void main() { int c; c=printf("Hello world"); printf("\n%d",c); }

2 Answers  


main( ) { void *vp; char ch = ‘g’, *cp = “goofy”; int j = 20; vp = &ch; printf(“%c”, *(char *)vp); vp = &j; printf(“%d”,*(int *)vp); vp = cp; printf(“%s”,(char *)vp + 3); }

1 Answers  






write a origram swaoing valu without 3rd variable

2 Answers  


program to Reverse a linked list

12 Answers   Aricent, Microsoft, Ness Technologies,


Derive expression for converting RGB color parameters to HSV values

1 Answers  


What is the hidden bug with the following statement? assert(val++ != 0);

1 Answers  


main(int argc, char **argv) { printf("enter the character"); getchar(); sum(argv[1],argv[2]); } sum(num1,num2) int num1,num2; { return num1+num2; }

1 Answers  


Write a C program to add two numbers before the main function is called.

11 Answers   Infotech, TC,


plz tell me the solution.......... in c language program guess any one number from 1 to 50 and tell that number within 8 asking question in yes or no...............

2 Answers   Wipro,


Categories