Answer Posted / sathiya
it is object oriented programming language
| Is This Answer Correct ? | 4 Yes | 19 No |
Post New Answer View All Answers
What is LINKED LIST? How can you access the last element in a linked list?
Difference between malloc() and calloc() function?
show how link list can be used to repersent the following polynomial i) 5x+2
what value is returned to operating system after program execution?
All technical questions
Explain how to reverse singly link list.
Write a program to use switch statement.
Why main is not a keyword in c?
How do I determine whether a character is numeric, alphabetic, and so on?
How do you determine a file’s attributes?
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
Explain how can a program be made to print the line number where an error occurs?
Is there a way to jump out of a function or functions?
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 “****”.
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.