Page 1 of 1

What happens when you attempt to compile and run the following code?#include <iostream>#include <sstream>#include <strin

Posted: Wed Aug 03, 2022 9:20 am
by answerhappygod
What happens when you attempt to compile and run the following code?#include <iostream>#include <sstream>#include <string>using namespace std;int main(void){string s;s = "Test";s.resize (s.size() ? 1);cout<<s<<" "<<s.size();return 0;}

A. It prints: Test 4
B. It prints: Test 3
C. Compilation error
D. It prints: Tes 3