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).
10451write a program that reads a series of strings and prints only those strings begging with letter "b"
2881Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
2 6197write a program that prompt the user to enter his height and weight,then calculate the body mass index and show the algorithm used
4602write a program that calculate the volume of cylinder after user enters radius and height and show the algorithm used
1 10063write a program to calculate the radius for a quadratic equation use modular programming(function abitraction)hint use quadratic function
1 4319write a program to convert temperature from fa height into celcius and vise versa,use modular programming
2687write a program to calculate the amount of investment after a period n years if the principal investors was p and interest is calculated using compound interest,formular=a=p(1+r)^n
2596
How to find the list of users who have two codes su01 and pfcg? thank in advance all.
code to set the main window's size
how to take time as input in the format (12:02:13) from user so that controls remains between these columns?
Can someone please explain more about how the XML Gateway works and what its purpose is?
What software is available for XML?
What is the meaning of version in XML?
What is the functionality of SetForegroundWindow?
code to create a new window
What are XML Namespaces?
plzzzzzzzzz xplain this code import java.awt.*; import java.awt.event.*; public class Link extends Frame implements ActionListener { Label l1; Button b1; public static void main(String sr[]) { new Link().setVisible(true); } public Link() { super("Warning"); setSize(500,500); setBackground(Color.lightGray); setLayout(null); l1=new Label("There is no Link"); l1.setBounds(0,0,500,460); l1.setFont(new Font("TimesRoman",Font.BOLD,35)); l1.setAlignment(Label.CENTER); add(l1); b1=new Button("QUIT"); b1.setBackground(Color.orange); b1.setBounds(0,460,500,40); b1.addActionListener(this); add(b1); } public void actionPerformed(ActionEvent e) { this.dispose(); } }
How to run the Result Intemation System project in java for collage student in which result of internal exam marks send on parents mobile using SMS? what software required to run this project? please reply immediately...
What is the coding about how to recognize color in fuzzy logic using Matlab R2009b?
Write a program to convert postfix expression to infix expression.
How to call JavaScript Function from Code-behind in asp.net?
Given a circular list of integers (when you reach the end of the list you come back to the beginning), what is the most efficient algorithm to find the smallest integer in the list? For example: circular_list = [22, 52, 66, 82, 5, 8, 12, 19].