fork download
  1. //Title of this code
  2. //g++ 4.9.2
  3.  
  4. #include <iostream>
  5. using namespace std;
  6. int main()
  7. {
  8. cout << sizeof(char) << endl ;
  9. cout << sizeof(char*) << endl ;
  10. }
Success #stdin #stdout 0s 3456KB
stdin
Standard input is empty
stdout
1
4