Semester : S1 and S2
Subject : Computer Programming
Year : 2017
Term : DECEMBER
Branch : BIOTECHNOLOGY
Scheme : 2015 Full Time
Course Code : CS 100
Page:22
0; i > size; i++) { scanf("%d",
&array[i]);} largest = array[0]; for (i=
1;i
largest = array[i];
}
printf("\n largest element present in the given array is : %d", largest);
return 0;
}
3
a) With the help of flow chart explain compiling and execution of aC program (2.5)
Compile & Execute C Program:
Lets look at how to save the source code in a file, and how to compile and run it. Following are the simple steps:
2. Open a text editor and add the above-mentioned code.