A stack can be implemented only using array?if not what is used?
Answer Posted / bharat chandra
stack can implemented by Array(static)format and linked
lised (dynamic)formated.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is c variable?
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 “****”.
What is equivalent to ++i+++j?
What are the general description for loop statement and available loop types in c?
What is 'bus error'?
using for loop sum 2 number of any 4 digit number in c language
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
What is the advantage of using #define to declare a constant?
What is the role of && operator in a program code?
How many bytes are occupied by near, far and huge pointers (dos)?
What is realloc in c?
What does main () mean in c?
Where does the name "C" come from, anyway?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
What are header files? What are their uses?