Esta es el arreglo más válida que te podemos dar, pero primero obsérvala pausadamente y valora si es compatible a tu trabajo.
Ejemplo 1: Cómo hacer una función en C++
//first lets create a function/*void is for starting something, anything after void will be the name of your
function which will be followed by () */voidyourFunction()//your code will be here, anything here will be the code in the yourFunction
cout <<"Functions"//now we have to go to our main function, the only function the compiler readsintmain()myFunction();//you call the function, the code we put in it earlier will be executedreturn0;
Ejemplo 2: cómo hacer una función en cpp
// function returning the max between two numbersintmax(int num1,int num2)// local variable declarationint result;if(num1 > num2)
result = num1;else
result = num2;return result;
Nos encantaría que puedieras compartir esta reseña si te valió la pena.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)