22 lines
No EOL
175 B
C++
22 lines
No EOL
175 B
C++
/*
|
|
Rafay Ahmad
|
|
23I-2526
|
|
*/
|
|
#include <iostream>
|
|
using namespace std;
|
|
|
|
class Course{
|
|
|
|
};
|
|
|
|
struct Student{
|
|
string name;
|
|
int rollNo;
|
|
};
|
|
|
|
int main(){
|
|
|
|
|
|
|
|
return 0;
|
|
} |