How to use auto type deduction in C++

1 Answer

0 votes
#include <iostream>

// auto keyword are used for type deduction during compilation

int main()
{
    auto i = 98; // int
    auto d = 3.14; // double
    auto b = false; // bool

    std::cout << i << "\n";
    std::cout << d << "\n";
    std::cout << b << "\n";
}
 
 
 
 
/*
run:
 
98
3.14
0

*/

 



answered Nov 28, 2022 by avibootz
...