“Авто I CPP” Ответ

Авто в 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

Авто 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

Ответы похожие на “Авто I CPP”

Вопросы похожие на “Авто I CPP”

Больше похожих ответов на “Авто I CPP” по C++

Смотреть популярные ответы по языку

Смотреть другие языки программирования