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
What does %p mean c?
What is double pointer in c?
Why doesn't C have nested functions?
What is the hardest programming language?
printf("%d",(printf("Hello")); What it returns?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
What are the different types of linkage exist in c?
size maximum allocated by calloc()
What is table lookup in c?
What are structure members?
Write a C Program to display the following menu: Menu 1. Display 2. Copy 3. Append 4. Exit Accept the choice (1-4) from the user, and perform the following tasks: Choice 1: Accept a file name from the user and display the file on screen Choice 2: Accept two file names, and copy first file to the second Choice 3: Accept two file names, and append second file to the first file Choice 4: Terminate the program
1 Answers Accenture, Concor, DMU, Satyam, Syntel, Tora,
main() {char a[10]={1,2,3,4,5,6};int x; for(x=0;x<4;x++){ b[x]=x+'a';} printf("%s",b);}