Kizspy | Question: 11
(Choose 1 answer)
What is the output of the following C++ code snippet?
#include <iostream>
using namespace std;
int main() {
int a = 5;
int b = 3;
cout << float(a/b);
return 0;
FJOVERFLOW.Com
A. 1
B. 1.6666...
C. 2
D. Compilation Error