Answer Posted / kalyan chukka
C Language Means Computer Language
| Is This Answer Correct ? | 9 Yes | 1 No |
Post New Answer View All Answers
What are the types of i/o functions?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
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 “****”.
Are c and c++ the same?
How do you list a file’s date and time?
What is the difference between formatted&unformatted i/o functions?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
to print the salary of an employee according to follwing calculation: Allowances:HRA-20% of BASIC,DA-45% of BASIC,TA-10%. Deductions:EPF-8% of BASIC,LIC-Rs.200/-Prof.Tax:Rs.200/- create c language program?
How many types of arrays are there in c?
How can you tell whether two strings are the same?
Give me the code of in-order recursive and non-recursive.
What is quick sort in c?
Describe dynamic data structure in c programming language?
What is pointer to pointer in c with example?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none