Answer Posted / kishor
Pandit Jawaharlal Nehru
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
write a program to generate address labels using structures?
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 “****”.
Calculate 1*2*3*____*n using recursive function??
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
What is the difference between a string and an array?
What is #include stdio h?
i got 75% in all semester am i eligible for your company
What are the main characteristics of c language describe the structure of ac program?
What does malloc () calloc () realloc () free () do?
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
What is the default value of local and global variables in c?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is the advantage of an array over individual variables?
What is a good data structure to use for storing lines of text?