<span>Johannes Gensfleisch zur Laden zum Gutenberg was a German blacksmith, goldsmith, printer, and publisher who introduced printing to Europe. His introduction of mechanical movable type printing to Europe started the Printing Revolution and is widely regarded as the most important invention of the second millennium, the seminal event which ushered in the modern period of human history; but his the first most famously achieved is the printing press that Johannes Gensfleish zur Laden zum made in the workshop.</span>
<span>All Native American tribes used natural pigments; the very concept of chemical pigments had not even been invented yet when Indians still roamed free. And all tribes created hand shaped pottery because they had no access to machinery to do it for them.
Southwest tribes include: Apache, Comanche, Havasupai, Hopi, Jemez, Kiowa, Lipan, Maricopa, Mohave, Navaho, Paiute, Papago, Panamint, Pecos, Pima, Pueblo, Shoshoni, Soaipuri, Tewa, Ute, Walapai, Yavapai, Yuma and Zuni
While all of them produced hand shaped pottery decorated with natural pigments, most did so for their own use within the tribe. The first and perhaps most famous of the tribes to trade heavily in pottery were the Maricopa. Others soon followed the Maricopa example such as the Navaho which became even more famous for their jewelry than their pottery.</span>
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>