What is structure in c language?
No Answer is Posted For this Question
Be the First to Post Answer
Give me the code of in-order recursive and non-recursive.
Is array a primitive data type in c?
If I have a char * variable pointing to the name of a function ..
1.find the second maximum in an array? 2.how do you create hash table in c? 3.what is hash collision
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
What is difference between %d and %i in c?
List out few of the applications that make use of Multilinked Structures?
What is array in C
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
What are valid signatures for the Main function?
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above