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
main() { int i; printf("%d",scanf("%d",&i)); // value 10 is given as input here }
how to swap 3 nos without using temporary variable
write a c program to Create a mail account by taking the username, password, confirm password, secret_question, secret_answer and phone number. Allow users to register, login and reset password(based on secret question). Display the user accounts and their details .
#define f(g,g2) g##g2 main() { int var12=100; printf("%d",f(var,12)); }
write a program to find out roots of quadratic equation "x=-b+-(b^2-4ac0^-1/2/2a"
PROG. TO PRODUCE 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
Write a program to implement the motion of a bouncing ball using a downward gravitational force and a ground-plane friction force. Initially the ball is to be projected in to space with a given velocity vector
program to Reverse a linked list
12 Answers Aricent, Microsoft, Ness Technologies,
#include<stdio.h> main() { const int i=4; float j; j = ++i; printf("%d %f", i,++j); }
main() { int i=0; for(;i++;printf("%d",i)) ; printf("%d",i); }
main() { extern out; printf("%d", out); } int out=100;
main() { signed int bit=512, i=5; for(;i;i--) { printf("%d\n", bit = (bit >> (i - (i -1)))); } } a. 512, 256, 128, 64, 32 b. 256, 128, 64, 32, 16 c. 128, 64, 32, 16, 8 d. 64, 32, 16, 8, 4