Print all possible combinations of String in C.
#include<stdio.h> #include<string.h> int main() { char str[20]; int n, i, j, k=1, tmp; printf("Enter any string...
#include<stdio.h> #include<string.h> int main() { char str[20]; int n, i, j, k=1, tmp; printf("Enter any string...
class MatrixMultiplication { public static void main(String args[]) { int a[][]={{1,2,3},{4,5,6},{7,8,9}},b[][]={{1,2,1},{2,4,6},{7,2...
//Various 7-Patterns Layout #include<stdio.h> //Global Variables int i, j, k, n=5, a; char x; void Pattern1_1(){ for(i=1;i<=n;...
#include<stdio.h> int main() { int arr[30]={8,10,13,18,20,21,25,34,41,47}; int n=10,i,nvalue,index,j,pos; //printing the actua...
//Generate Unique Random Values and Store in Array. #include<iostream> #include<iomanip> #include<time.h> #include<st...
#include<stdio.h> int compLength(char s1[], char s2[]) { int l1,l2; for(l1=0;s1[l1]!='\0';l1++); //length of string1 f...
#include<iostream> #include<iomanip> using namespace std; int main() { int ar[11]={19,14,23,22,18,25,17,30,9,17,33}, n=1...
#include<iostream> #include<iomanip> #include<time.h> #include<stdlib.h> using namespace std; void searchArray() { ...
#include<stdio.h> int main() { char pwd[20],ch; char mypwd[]="Hello"; int i=0; printf("Enter Password: "...
#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)...
#include<fstream> #include<iostream> #include<iomanip> #include<string.h> using namespace std; class Library ...
Download the File. Click here to Watch the Explanation & Developing Video