//When using auto variables, the data type is decided in initialisation
#include <iostream>
using namespace std;
int main() {
auto IntegerVar=25; //creates integer type variable
auto FloatVar=26.77; //creates float type variable
auto StringVar="Hello"; //creates string type variable
auto CharVar="C"; //creates char type variable
cout<<"CREATING VARIABLES USING AUTO DATA TYPE
";
cout<<"Integer: "<<IntegerVar<<endl;
cout<<"Float: "<<FloatVar<<endl;
cout<<"String: "<<StringVar<<endl;
cout<<"Char: "<<CharVar;
cout<<"
";
return 0;
}