Answer Posted / yug
array is a sequential collection of elements of same data
types and those are stored in contiguous memory locations.
| Is This Answer Correct ? | 80 Yes | 15 No |
Post New Answer View All Answers
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
Explain what does the format %10.2 mean when included in a printf statement?
What is echo in c programming?
Implement bit Array in C.
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
Where are local variables stored in c?
Explain how do you override a defined macro?
What is structure in c definition?
What is operator promotion?
What is the difference between new and malloc functions?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What does typedef struct mean?
Can variables be declared anywhere in c?
What is function and its example?