Well let me explain this to you in a better way. The terms 'subprogram', 'function' and 'method' have all the same meaning in C/C++ but we usually called them functions, and we divide the functions into two types :
1)Function : it's the usual one, as we all know, it returns a value.
  2) General format :
  Type function_name(<arguments>){
               // Your work
               return <value/variable> //Note : the type must be the same as the function
                                                    // type.
}
      Example :
int Maheen(int a, int b){
             int c = a + b;
            return c;
        }
 Procedure : it's a function but it doesn't return any value, it begins with 'void'.
General format :
       void function_name(<arguments>){
               // Your work
               //Note : There is no return here.
       }
       
Example :
       void Maheen(int a, int b){
             int c = a + b;
            printf("The sum is : %d", c);
        }
I think this can help you greatly
<span>
</span>
        
                    
             
        
        
        
La respuesta correcta para esta pregunta abierta es la siguiente.
La declaración que es falsa es: "La crónica cierra con un párrafo que sintetiza, resume la historia presentada."
Las declaraciones que son verdaderas son:
"En la crónica es necesario e importante presentar los hechos en orden cronológico."
"La crónica se caracteriza por describir con detalles lugares, personas y eventos."
la crónica es uno de los géneros periodísticos de opinión más relevantes. Se caracteriza porque se hace un relato minucioso, específico de los acontecimientos de un evento determinado, y de manera cronológica. Cuando el periodista escribe una crónica, debe darle los detalles al lector de cómo fueron ocurriendo los acontecimientos, uno tras otro, con objeto de que los lectores sepan qué fue lo que ocurrió y los personajes involucrados. 
 
        
             
        
        
        
The guitar is usually not an orchestral instrument.