fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. class Student{
  5. public :
  6. char *name;
  7. int rollNo;
  8. Student(int num){
  9. rollNo = num;
  10. }
  11.  
  12. void print(){
  13. cout << rollNo;
  14. }
  15. };
  16.  
  17. int main() {
  18. Student s(12);
  19. s.print();
  20. }
  21.  
Success #stdin #stdout 0.01s 5536KB
stdin
Standard input is empty
stdout
12