Write a program print square pattern
Write a program print square pattern #include<iostream> using namespace std; int main() { int i,j; …
October 06, 2022Write a program print square pattern #include<iostream> using namespace std; int main() { int i,j; …
Masti With Coding October 06, 2022Write a program print half pyramid number #include<iostream> using namespace std; int main() { int i,j,row…
Masti With Coding October 06, 2022Write a program print half pyramid star #include<iostream> using namespace std; int main() { int i,j,row,co…
Masti With Coding October 06, 2022Write a program to calculate tax Condition 1: tax less than or equal to 10000 then no tax Condition 2: tax grater t…
Masti With Coding October 06, 2022Write a program to calculate total and average marks of 5 subjects #include<iostream> using namespace std; int…
Masti With Coding October 06, 2022Write a program 5 student store record using structure #include<iostream> using namespace std; struct stu { …
Masti With Coding October 06, 2022Write a program two number add using pointer #include<iostream> using namespace std; int main() { int *p,*…
Masti With Coding October 06, 2022Write a program add two matrix #include<iostream> using namespace std; int main() { int a[3][3], b[3][3], i…
Masti With Coding October 06, 2022Write a program to find max & min elements of array #include<iostream> using namespace std; int main() {…
Masti With Coding October 06, 2022Write a program to print array elements in reverse order #include<iostream> using namespace std; int main() { …
Masti With Coding October 06, 2022Write a program to insert array elements at any position of array #include<iostream> using namespace std; int …
Masti With Coding October 06, 2022Write a program to sort array elements in desending order #include<iostream> using namespace std; int main() { …
Masti With Coding October 06, 2022Write a program to sort array elements in ascending order #include<iostream> using namespace std; int main() {…
Masti With Coding October 06, 2022Write a program swap two number #include<iostream> using namespace std; int main() { int a,b,c; cout&…
Masti With Coding October 06, 2022Write a program calculate area of triangle #include<iostream> using namespace std; int main() { int h,area…
Masti With Coding October 06, 2022Write a program calculate area of rectangle // area of rectangle #include<iostream> using namespace std; int ma…
Masti With Coding October 06, 2022Write a program calculate area of square #include<iostream> using namespace std; int main() { int l,area; …
Masti With Coding October 06, 2022Write a program calculate area of circle #include<iostream> using namespace std; int main() { int r; flo…
Masti With Coding October 06, 2022Write a program to find not prime number between given range #include<iostream> using namespace std; int main() …
Masti With Coding October 06, 2022Write a program to find factorial of number #include<iostream> using namespace std; int main() { int n,fac…
Masti With Coding October 06, 2022Write a program a number is prime or not #include<iostream> using namespace std; int main() { int n,i,j; …
Masti With Coding October 06, 2022Write a program to check a number is perfect or not #include<iostream> using namespace std; int main() { in…
Masti With Coding October 06, 2022Write a program to print first N natural number #include<iostream> using namespace std; int main() { int n,…
Masti With Coding October 06, 2022Write a program to check a number is armstrong or not #include<iostream> using namespace std; int main() { …
Masti With Coding October 06, 2022Write a program to check a number is palindrome or not #include<iostream> #include<string.h> using namesp…
Masti With Coding October 06, 2022Write a program to calculate sum of digits #include<iostream> using namespace std; int main() { int n,a,su…
Masti With Coding October 06, 2022Write a program to reverse number #include<iostream> using namespace std; int main() { int n,r; cout<…
Masti With Coding October 06, 2022Write a program to make calculator using switch case #include<iostream> using namespace std; int main() { i…
Masti With Coding October 06, 2022Write a program to find given range of a number is odd or even #include<iostream> using namespace std; int main…
Masti With Coding October 06, 2022Write a program to check a number is odd or even #include<iostream> using namespace std; int main() { int…
Masti With Coding October 06, 2022Write a program to add two number #include<iostream> using namespace std; int main() { int a,b; cout<…
Masti With Coding October 06, 2022