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

Post New Answer

More C Interview Questions

What are the back slash character constants or escape sequence charactersavailable in c?

0 Answers  


Difference between for loop and while loop?

1 Answers  


program in c to print 1 to 100 without using loop

9 Answers   Wipro,


I came across some code that puts a (void) cast before each call to printf. Why?

0 Answers  


What is the difference between malloc calloc and realloc in c?

0 Answers  






How many types of functions are there in c?

0 Answers  


Write a small C program to determine whether a machine's type is little-endian or big-endian.

5 Answers   nvidia,


What do you mean by scope of a variable in c?

0 Answers  


Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }

1 Answers  


write a c program to find the roots of a quadratic equation ax2 + bx + c = 0

11 Answers   CSC, St Marys, TATA,


how to add two numbers without using arithmetic operators?

4 Answers  


write a c program to print a given number as odd or even without using loop statements,(no if ,while etc)

10 Answers  


Categories