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...
//Enter the Number of words and combine them into sentence. #include<stdio.h> #include<string.h> int main() { int n, i; ...
#include<iostream> #include<iomanip> using namespace std; bool isPrime(int n) { if (n==1) return false; else { for(int ...
#include<iostream> #include<iomanip> using namespace std; bool isPrime(int n) { if (n==1) return false; else { for(int ...
//Randomly Generate Sorted Array #include<iostream> #include<iomanip> #include<time.h> #include<stdlib.h> using name...
//Binary Search in 1D Array #include<iostream> #include<iomanip> #include<time.h> #include<stdlib.h> using namespace...
#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<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<iostream> #include<iomanip> using namespace std; void Pattern1(int n) { int i, j, k, x=1; for(i=1;i<=n;i++) {...
//Create a lucky number of your name using ASCII values. //E.g.: HELLO: H=8, E=5, L=12, L=12, O=15. //Sum of 8 + 5 + 12 + 12 + 15 = 52 ....
//Big Numbers from Random input. #include<iostream.h> #include<stdlib.h> #include<time.h> #include<string.h> #...
#include<iostream.h> #include<conio.h> #include<stdio.h> struct Student { int age; char name[20]; Student ...
#include<iostream.h> #include<conio.h> #include<stdio.h> struct Product { int id; char name[20]; Product *n...
//Is Number is Prime or Not. //Prime Nos. upto N. //First N Prime Nos. //Prime Nos. Pattern #include<iostream> #include<iom...
Download the File. Click here to Watch the Explanation & Developing Video