Program to Find Quotient and Remainder in C++ Program to Find Quotient and Remainder in C++ #include <iostream> using namespace std; int main() […]
Read moreAuthor: Sahil Prajapati
Program to Print Multiplication Table in C++
Program to Print Multiplication Table in C++ Program to Print Multiplication Table in C++ #include<iostream> using namespace std; int main(){ int number; cout<< “Enter the number for printing multiplication table”<< endl; cin >>number; // printing the multiplication number for(int i=1; i<11; i++){ cout<< number <<” X “ << i <<” = “<< number*i <<endl; } […]
Read moreBinary Search in C++
Binary Search in C++ Binary Search in C++ #include <iostream> #include <algorithm> using namespace std; int binary_search(int arr[], int size, int target) { int […]
Read moreSecond Largest Element in an Array
Second Largest Element in an Array Second Largest Element in an Array #include <iostream> using namespace std; int main() { int arr[] = {1, […]
Read moreKaisa Lga Mera Majak
Kaisa Lga Mera Majak Thanks for reading this blog. Hope you get satisfied with the blog and definitely this blog […]
Read moreGiveaway Giveaway 🥳🥳
Giveaway🥳 Join this Giveaway…50 Lucky User will get a chance to upto Rs.100. Click to Proceed
Read moreCharacter Pattern in Java
Character Pattern in Java Character Pattern in Java import java.util.*; public class Character_Pattern { public static void main(String[] args) { […]
Read moreBinary To Decimal in C
Binary To Decimal in C Binary To Decimal in C Question: Write a C program to convert a Binary number into Decimal number. […]
Read moreDecimal To Binary in C
Decimal To Binary in C Decimal To Binary in C Question: Write a C program to convert a Decimal number to Binary number. […]
Read moreSwapping two number using Function (Call By Reference)
Swapping two number using Function (Call By Reference) Swapping two number using Function (Call By Reference) Question: Write a program to swap two […]
Read more
Recent Comments