what is difference between array and structure?
Answer Posted / rajprasadmaity
collection is similar data type array
array always start from 0
array size fixed
| Is This Answer Correct ? | 123 Yes | 36 No |
Post New Answer View All Answers
What is NULL pointer?
What are the storage classes in C?
Explain what is page thrashing?
What is meant by realloc()?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
Explain what is a const pointer?
How is a structure member accessed?
Explain about the constants which help in debugging?
How can you allocate arrays or structures bigger than 64K?
Can we add pointers together?
What is #define size in c?
please explain clearly about execution of c program in detail,in which stage are the printf sacnf getting into exeecutable code
How do you use a pointer to a function?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon