How many types of linked lists what are they?
How many types of data structures?
Answer Posted / gaurav s
Not a single person mentioned generalized linked list?
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
What is break statement?
What is a protocol 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
When is a “switch” statement preferable over an “if” statement?
What is the g value paradox?
How can you find the exact size of a data type in c?
What is wrong with this program statement?
In C language, a variable name cannot contain?
Is c++ based on c?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Why we use void main in c?
What are the 5 elements of structure?
Explain what is the benefit of using const for declaring constants?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference