What will the following programs print on the screen?
A)
\#include <iostream>
using namespace std;
int main( $)$
$\{$ int freeze $=32$, boil $=212 ;$
freeze $=0 ;$
boil $=100 ;$
cout $\ll$ freeze $\ll$ endl $\ll$ boil endl;
return $0 ;$
\}
\#include <iostream>
using namespace std;
int main()
\{
int freeze $=32$, boil $=212$;
freeze $=0$;
boil $=100$;
cout $\ll$ freeze $\ll$ endl $\ll$ boil $\ll$ endl;
return 0 ;
\}
B)
\#include <iostream>
using namespace std;
int main()
\{
int $\mathrm{x}=0, \mathrm{y}=2$;
$\mathrm{x}=\mathrm{y} \star 4$;
cout $\ll x \ll$ end $x \ll y \ll$ endl
return 0 ;
\}
C) \#include <iostream>
using namespace std;
int main()
\{
cout $\ll$ "I am the incredible";
cout $\ll$ "computing $\backslash$ nmachine";
cout $\ll$ "\nand I will \namaze $\backslash n "$;
cout $\ll$ "you. ";
return 0 ;
?
D) \#include <iostream>
using namespace std;
int main()
?
cout $\ll$ "Be careful $\backslash \mathrm{n}$ ";
cout $\ll$ "This might/n be a trick ";
cout $\ll$ "question $\backslash$ n" ;
return 0 ;
\}E) \#include <iostream>
using namespace std;
int main( )
$\{$ int $a, x=23 ;$
a $=x$ o $2 ;$
cout $\ll x \ll$ end $l \ll a \ll$ end 1 ;
return $0 ;$
\} i
E) \#include <iostream>
using namespace std;
int main()
\{
int $a, x=23$;
$\mathrm{a}=\mathrm{x}$ \& 2 ;
cout $\ll \mathrm{x} \ll$ endl $\ll \mathrm{a} \ll$ end ;
return 0 ;
\}