✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Mit ír ki a következő kódrészlet?
#include <iostream>void f(char x) { std::cout << "c"; }void f(int x) { std::cout << "i"; }void f(double x) { std::cout << "d"; }
int main() { f(1.0);}