can we store values and addresses in the same array? explain
Answer Posted / rakesh
Yes, We can Store Value and Address in the Same Array using the LinkedList Concept of the Data & File Structure.
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
Explain what is the difference between null and nul?
Tell us something about keyword 'auto'.
What is strcmp in c?
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)
What is typedef struct in c?
What are the string functions? List some string functions available in c.
What is data types?
Differentiate fundamental data types and derived data types in C.
what are the different storage classes in c?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
How can I handle floating-point exceptions gracefully?
Why do we use static in c?
What is a built-in function in C?
Can a void pointer point to a function?