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
What happens when you attempt to compile and run the following code?#include <iostream>#include <sstream>#include <strin
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 am
What happens when you attempt to compile and run the following code?#include <iostream>#include <sstream>#include <strin
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!