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