<u>C program for finding the largest Value in array of integers</u>
#include <stdio.h>
/*Function that returns the largest value stored in an array-of-int*/
int max(int array[], int m)
{
int i;
/* Initializing variable maximum with array[0]*/
int maximum = array[0];
/* Traversing array elements from 2 to last and comparing it with variable maximum*/
for (i = 1; i < m; i++)
if (array[i] > maximum)
maximum = array[i];
return maximum; //returning maximum element of array
}
//driver function
int main()
{
int array[] = {5, 78, 23, 65, 9}; //Input array
int m = sizeof(array)/sizeof(array[0]); //finding the length of array
printf("Largest in given array is %d", max(array, m));/*function calling and printing maximum element of array */
return 0;
}
<u>Output:
</u>
Largest in given array is 78
Answer:
In the history of graphic design, Copperplate printing uses a polished plate on which design has been engraved. Johann Gutenberg invented the Master of Playing Cards, which is also known as Copperplate engraving.
Explanation:
Copperplate invented around 1450 in Johann Gutenberg's movable system. Cooper plates are used in the intaglio process, which is also known as the printing process. Thick ink is forced into the grooves.
Copperplate is a smooth plate that has been engraved. It is a block of the plate. In this engraving, design makes on a flat surface. It is a historically significant method in print and map-making. It is used for illustrations of books and magazines.
Types:
Different type of engraving are available such as
Etching, Rotary Engraving, and Laser Engraving.
Tools of engraving:
Dremel with built-in Li-ion battery
Proxxon with Trial Glass
Dremel Engraver
Generic Micro Engraver, etc
The answer is most probably Graph Search.