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.
No Answer is Posted For this Question
Be the First to Post Answer
Are c and c++ the same?
What is meant by preprocessor in c?
What is the difference between break and continue?
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
How do I copy files?
What is the relationship between pointers and data structure?
How can I find out how much memory is available?
Write a program to find given number is even or odd without using any control statement.
main() { float a=8.8; double b=8.8; if(a==b) printf("Equal"); else printf("not equal"); getch(); } what is the output? with reason
why integer range between -327680to+32767
how can make variable not in registers
what is a static function