Post 1
// Created by Viraj Desai, for fun
#include <iostream>
using namespace std;
int main() {
cout <<"Welcome! To the wonderland, of C++." << endl; // Welcoming others
cout <<"Here myself, Viraj Desai is trying to practice coding of C++.";
cout <<"Here, I will program a question in the code. ";
cout <<"If a = 890 , and b = 17. Add a into b, to find the answer" << endl;
auto a = 890; // Value
auto b = 17; // Value
cout <<a + b << endl;
...