fork(1) download
  1. #include <iostream>
  2.  
  3. struct K{
  4. const static int a = 5;
  5. };
  6.  
  7. int main(){
  8. K k;
  9.  
  10. std::cout << std::min(k.a, 7);
  11. }
Success #stdin #stdout 0s 3412KB
stdin
Standard input is empty
stdout
5