How many types of linked lists what are they?
How many types of data structures?
Answer Posted / saranya
singly link list
doubly link list
circular link list
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is define c?
a linearly ordered set of data elements that have the same structure and whose order is preserved in storage by using sequential allocation a) circular b) ordinary c) array d) linear list
What is the code in while loop that returns the output of given code?
code for find determinent of amatrix
What is dynamic dispatch in c++?
Why use int main instead of void main?
What do you mean by Recursion Function?
Explain how can I convert a string to a number?
Is fortran still used in 2018?
What is advantage of pointer in c?
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
What is else if ladder?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Is it fine to write void main () or main () in c?