Answer Posted / cynthia
Data may be organized in different ways.The logical or
mathematical model of a particular organization of data is
called a data structure.
| Is This Answer Correct ? | 2 Yes | 0 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.
Are the expressions * ptr ++ and ++ * ptr same?
How can you avoid including a header more than once?
What is difference between structure and union in c?
What is the best style for code layout in c?
given post order,in order construct the corresponding binary tree
What is the use of #define preprocessor in c?
Explain what is meant by 'bit masking'?
What is floating point constants?
in multiple branching construct "default" case is a) optional b) compulsarily c) it is not include in this construct d) none of the above
Explain what are reserved words?
When should a type cast not be used?
What is double pointer in c?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
Is there any demerits of using pointer?