Search an element in an Array using Linear Search concept in C++ (WITH EXPLANATION VIDEO)
#include<iostream> #include<iomanip> #include<time.h> #include<stdlib.h> using namespace std; void searchArray() { ...
#include<iostream> #include<iomanip> #include<time.h> #include<stdlib.h> using namespace std; void searchArray() { ...
#include<iostream> #include<iomanip> using namespace std; void Pattern1(int n) { int i, j, k, x=1; for(i=1;i<=n;i++) {...
#include<stdio.h> int main() { char pwd[20],ch; char mypwd[]="Hello"; int i=0; printf("Enter Password: "...
''' Following logics in single program. Find the distinct values of array Find the frequency of each number of array. Find all ...
#include<iostream> using namespace std; void shiftNumbers(int a[],int n) { int i,j,k,tmp; for(i=0,j=0;i<n;i++) { if(a[i]==...
#include<iostream> using namespace std; void cyclicRotate(int a[],int n) { int tmp,j; tmp=a[n-1]; for(j=n-1;j>0;j--) { a...
#include<iostream> using namespace std; void swap(int a[][4] ,int r, int c) { int i,j,n=4; for(int i=0;i<r;i++) { for(in...
//Entered number is automorphic number or not? #include<iostream> #include<math.h> using namespace std; int automorphic(int n)...
Concept: Percentage Usage in Excel Functions used in Part: RANDBETWEEN(), MAX(), MIN(), SUM(), COUNT()
This playlist is for the students of 12th Std. of Gujarat Board.
Download the File. Click here to Watch the Explanation & Developing Video