The title seems to suggest that it is not just asking how many ways can you choose r students from a class of n students. Instead it suggests that it is asking, "How many ways can I group n students into r disjoint committees?"
There are two possible problems this could be asking for. The easy one is where, were you to swap two students on two different committees, you would consider that a different arrangement. Here each student can go into any of r committees. So the total arrangements is r^n. This, however, allows for committees of zero students. To find it for committees that must have at least one student each, determine how many ways you can choose r students from the n and place one into each committee. Then use the formula already described on the remaining n-r and multiply the two results.
The other problem it might be asking is how many partitions are there of n students into r committees. Here you don't care who is on which committee, but just how many are on each committee.
This is a harder problem. I will show the solution here with the caveat that it allows for committees that have zero students.
Here's how I'm going to select the students into the committees. First I'm going to take r-1 chairs and line them up against the front wall of the room, with spaces between them and spaces between the chairs on the ends and the side-walls. So this makes for r spaces. I will then sort the students into various spaces between the chairs. All the students that end up in a given space will constitute a committee.
What I have here is 2 kinds of objects -- chairs and students. I have a total of n + r - 1 objects. If you consider the students to be indistinguishable from each other (for this purpose anyway -- I know that in reality they all are individuals) and the chairs to be indistinguishable from each other, then the problem is asking for the number of arrangements of the objects without regard to the ordering of the students or of the ordering of the chairs. If I did pay attention to ordering, then there would be (n + r - 1)! arrangements. But there are n! orderings of students and (r-1)! orderings of chairs. So the total number of ways is
!}{n!(r-1)!})
If you require that each committee have at least k members, the problem becomes more complicated, but you solve it using similar methods.