Answer Posted / dharmendra jadeja
Array is a Collection of Elements of same datatypes.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
What is string function c?
What is a protocol in c?
i want to know the procedure of qualcomm for getting a job through offcampus
what is the structure pointer?
How many keywords are there in c?
What does it mean when the linker says that _end is undefined?
What is the difference between array and structure in c?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Tell me with an example the self-referential structure?
Explain what is wrong with this statement? Myname = ?robin?;
Are there namespaces in c?
Is c weakly typed?
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
how do you execute a c program in unix.
How many types of arrays are there in c?