#include using namespace std; int main() { int a = 3; float b = 4.5; double c = 5.25; double sum; sum = a + b + c; cout << "The sum of a, b, and c is", sum << endl; return 0; }
Given a String S. Find out which of the following basic C++ data types it represents and its size (in bytes). The possible data types are: 1. Integer 2. Float 3. Double 4. Character