Find largest element of an array in C++ Find largest element of an array in C++ #include <iostream> using namespace std; int main() { [β¦]
Read moreTag: computer science
Write a Program in python to find the multiple of a number ( the divisor) out of given five numbers
Hereβs a Python program to find the multiples of a given divisor out of five numbers provided by the user: def find_multiples(divisor, numbers):# Initialize a [β¦]
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 moreC program to copy contents of one file to another file
#include <stdio.h> #include <stdlib.h> // For exit() int main() { FILE *fptr1, *fptr2; char [β¦]
Read moreProgram to concatenate two string without using strcat
#include <stdio.h> int main() { // Get the two Strings to be concatenated char str1[100] = βGoodβ, str2[100] = βmorningβ; [β¦]
Read moreColourful firework 
window.onload = () => { const canvas = document.createElement(βcanvasβ); const ctx = canvas.getContext(β2dβ); const GRAVITY = 0.05; const FRECTION = 0.99; [β¦]
Read moreFlowchart
Flowchart Flowchart Flowchart are nothing but the graphical representation of the data or the algorithm for a better understanding of the code visually. It [β¦]
Read moreProgram for diamond shape 
#include <iostream> using namespace std; class A { public: void show() { cout << βDiamond pattern: β; [β¦]
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 moreWhat do you understand by pre-emptive and non pre-emptive process ?
What do you understand by $pre-emptive and non pre-emptive process ? What do you understand by $pre-emptive and non pre-emptive process ? In this [β¦]
Read more
Recent Comments