Ex.No:4c Sorting – Coding Connect

AIM: To write a C program to sort an array of n integers. ALGORITHM: Step 1: Start the program. Step 2: Read the array a. Step 3: Repeat for i ← 0 to ArraySize …
AIM: To write a C program to sort an array of n integers. ALGORITHM: Step 1: Start the program. Step 2: Read the array a. Step 3: Repeat for i ← 0 to ArraySize …
AIM: To write a C program to illustrate menu-driven Programming. ALGORITHM: Step 1: Start the program. Step 2: Read choice and num. Step 3: Repeat till a valid choice. Step 3a: if choice is 1 …
AIM: To write a c program to print triangle of numbers. ALGORITHM: Step 1: Start the program. Step 2: Declare the variables i,j,k,l and n as “int” datatype. Step 3: Read N numbers of lines in a triangle. Step…
AIM: To write a c program to find the exponent of the given number. ALGORITHM: Step1: Start the program. Step 2: Enter the X and n Value. Step 3: Set a loop upto n. Step 4:…
Before going to the program first let us see what is Slope and Midpoint of a Line and how to calculate it? Slope of a Line: The Slope of a Line is a number that…
AIM: To write a C program to find the area of a triangle given the length of three sides. ALGORITHM: Step 1: Start the program. Step 2: Read the side lengths a, b and c. Step…
AIM: To write a C program to evaluate x = 8t2-t+4 y=sin 30◦ z=e3t+5 ALGORITHM: Step 1: Start the program. Step 2: Read t. Step 3 : Calculate x = 8t2-t3+4 y=sin 30◦ z=e3t+5 Step 4:…
AIM: To write a c program to display the size of each data type. ALGORITHM: Step 1: Start the program. Step 2: Use the “sizeof()” operator to display the size of each datatype. Step 3…
Search, generate, and manipulate data , Presentation and Visualization of graphs, charts, 2D, 3D and Problem formulation, Problem Solving using Flowcharts by A) Word Processing B) Spread Sheet C) Power point presentation A. Word Processing A.1 Document Creation, Text manipulation…
(I)GENERAL PURPOSE COMMANDS date The date command is used to display the current date with day of week, month, time and the year. Syntax: $ date $date +[%format] Example: a) $ date …