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
No Answer is Posted For this Question
Be the First to Post Answer
7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.
Explain argument and its types.
In which language linux is written?
what is the value of 'i'? i=strlen("Blue")+strlen("People")/strlen("Red")-strlen("green")
7 Answers Cadence, JNTU, Zen Technologies,
Why does this code crash?
What are the advantages of using Unions?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
How can I read/write structures from/to data files?
Why can't we initialise member variable of a strucutre
What is non linear data structure in c?
Write a program to compute the similarity between two strings - The program should get the two strings as input - Then it will output one single number which is the percentage of similarity between the two strings
where does malloc() function get the memory?