#include <iostream> using namespace std; class A { public: void show() { cout << βDiamond pattern: β; [β¦]
Read moreCategory: c++
Program for diamond shape
Reversing the Array
Reversing the Array Reversing the Array Write a program to take input of integer array of size 5 and display the array [β¦]
Read morePrint Even Odd with help of function
Print Even Odd with help of function Print Even Odd with help of function #include <stdio.h> #include <stdbool.h> bool isPrime(int num) { if (num [β¦]
Read moreRight Triangle Star Pattern
Right Triangle Star Pattern Right Triangle Star Pattern #include<stdio.h> int main(){ int n; printf(βEnter number\nβ); scanf(β%dβ,&n); for(int i=1; i<=n; i++) { for(int j=1; j<=i; [β¦]
Read moreFish pattern program
#include<stdio.h> int main() { int x,y,t; for(t=0;t<50;t++) { for(y=7;y>-8;yβ) { for(x=-7;x<=10;x++) { if(y==7) { if((x+t)%2!=0) printf(βββ); else printf(β~~β); } else if(y==-7) printf(β__β); else if(y==6) [β¦]
Read moreButterfly Pattern Program
Butterfly Pattern Program Butterfly Pattern Program #include<stdio.h> int main(){ int n; scanf(β%dβ,&n); for(int i=1;i<=n;i++){ [β¦]
Read moreBCA Notes Link
BCA Notes Link (Shivam) BCA Notes Link (Shivam) Link : click here Topics Covered : bca notes bca notes app bca notes [β¦]
Read moreresult calculator , simple function program , function in c , function in java , functions, function overloading
result calculator , simple function program , function in c , function in java , functions, function overloading result calculator , simple function program , [β¦]
Read moreDefine a Function array() which takes input in array and a function sum() which calculate the sum of the same array. Call the function in main() in a loop of five times β Simple loop and array question , matrix question , 2d array question
Define a Function array() which takes input in array and a function sum() which calculate the sum of the same array. Call the function in [β¦]
Read moreInput two matrix in 3-D array and multiply and store in another array β Simple loop and array question , matrix question , 2d array question
Input two matrix in 3-D array and multiply and store in another array β Simple loop and array question , matrix question , 2d array [β¦]
Read more
Recent Comments