fork download
  1. /******************************************************************************
  2.  
  3. Welcome to GDB Online.
  4. GDB online is an online compiler and debugger tool for C/C++.
  5. Code, Compile, Run and Debug online from anywhere in world.
  6.  
  7. *******************************************************************************/
  8. #include <iostream>
  9. using namespace std;
  10. class car{
  11. public:
  12. int eng;
  13. string brandname;
  14. int seating;
  15. string color;
  16. };
  17. int main() {
  18. car car1;
  19. car1.seating;
  20. car1.eng = 1500;
  21. return 0;
  22. }
  23.  
Success #stdin #stdout 0.01s 5324KB
stdin
45
stdout
Standard output is empty