https://rentry.org/PPP2_p99b

// Code derived from Stroustrup's PPP2 book
// § 4.3.3 Conversions
// -beginning on p 99

#include <iostream>

using std::cout;

int main()
{
  double d = 2.5;
  cout << d << '\n';

  int i = 2;
  cout << i << '\n';

  double d2 = d / i;  // d2 == 1.25
  cout << d2 << '\n';

  int i2 = d / i;  // i2 == 1
  cout << i2 << '\n';

  // int i3{d / i};  // error: double -> int conversion may narrow (§3.9.2)
}

build & run:

g++ -std=c++20 -O2 -Wall -pedantic ./ch_04/main_p99b.cpp && ./a.out

PrevUpNext

Edit
Pub: 23 Jan 2023 09:51 UTC
Edit: 29 Apr 2023 06:48 UTC
Views: 403