“Auto dans CPP” Réponses codées

C AUTO

//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\n\n";
    cout<<"Integer: "<<IntegerVar<<endl;
    cout<<"Float: "<<FloatVar<<endl;
    cout<<"String: "<<StringVar<<endl;
    cout<<"Char: "<<CharVar;
    
    cout<<"\n\n";
    return 0;
}
ALeonidou

Auto dans CPP

#include<iostream>
#incllude<vector>
using namespace std;

int main() {
   vector<int> vec(10);       // Auto deduce type to be iterator of a vector of ints.
   for(auto it = vec.begin(); it != vec.end(); vec ++)
   {
      cin >> *it;
   }
   return 0;
}
Clear Corncrake

auto i cpp

auto n=1;
// this will make the type int, and you can't change trough the program;
cout << n;
// OR
auto n="how you doin'";
cout << n;
Healthy Hedgehog

Réponses similaires à “Auto dans CPP”

Questions similaires à “Auto dans CPP”

Plus de réponses similaires à “Auto dans CPP” dans C++

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code