Create a code in C ++. The code must include a declaration of a variable to save an integer. The initialization of the variable for the value .35 and a message that prints to the screen the following: "To print a new line we must use \ n and to print a tab \ t"
CODE IN C++:
#include <iostream>
using namespace std;
int main()
{
//declaring integer variable
int num ;
//initializing the value to variable
num = 35;
//displaying the message to the screen
cout<<"\"To print a new line we must use \\n and to print a
tab \\t\"";
return 0;
}
OUTPUT:

Create a code in C ++. The code must include a declaration of a variable to...