Searching in C language refers to the process of finding a specific element or value within a data structure, typically an array. Searching algorithms help determine whether an element exists in the data structure and, if so, its position. Searching: L-Search 1#include<stdio.h> 2int lsearch(int b[],int n,int …
Read MoreSorting in C language refers to arranging the elements of an array in a specific order, typically in ascending or descending order. Sorting: Bubble Sort 1#include <stdio.h> 2int main() 3{ 4 int i, j, k, temp, n, a[20]; 5 6 printf("enter the number of elements in the array:\n"); 7 scanf("%d", …
Read MoreWhen we set our new system, while setting up an operating system on our system, we got an option to select the hard disk, do I want to divide my memory in certain section, you can divide the memory in n number of section but for my case I have divided it into two parts which is C: drive (which is the local drive) and …
Read MoreNow let's talk about different environments, so on our system, we can work on more than one O.S. if, like on my windows I have ubuntu. In case of Windows for installing a secondary O.S. there is a software known as WSL: which allows me to install a secondary O.S. on my primary operating system. Another example: Virtual …
Read MoreMarkdown is a lightweight markup language that allows you to add formatting elements to plaintext text documents. Developed by John Gruber in 2004. In md files we can use certain Html commands easily. HEADINGS 1# Heading 1 2## Heading 2 3### Heading 3 4#### Heading 4 5##### Heading 5 OUTPUT Heading 1 Heading 2 Heading …
Read MoreContents 1. Collections: List, Dictionary, Set, Tuple, Range, Enumerate, Iterator, Generator. 2. Types: Type, String, Regular_Exp, Format, Numbers, Combinatorics, Datetime. 3. Syntax: Args, Inline, Import, Decorator, Class, Duck_Types, Enum, Exception. 4. System: Exit, Print, Input, Command_Line_Arguments, Open, Path, …
Read More