REVERSE A NO IN C++ Β Β REVERSE A NO IN C++ Β Β #include<iostream> using namespace std; int main(){ int n; cin>>n; int reverse=0; […]
Read moreAuthor: Ayush Paswan
AMAZON PROJECT HTML & CSS
AMAZON PROJECT HTML & CSS Β Β AMAZON PROJECT HTML & CSS Β HTML CODE <!DOCTYPE html> <html lang=βenβ> <head> Β Β <meta charset=βUTF-8β³> Β […]
Read moreC++ Factorial Program
C++ Factorial Program Β C++ Factorial Program #include<iostream> #include<math.h> using namespace std; int fact(int n){ Β Β int number=1; Β Β for(int i=n;i>=1;iβ){ Β Β […]
Read moreC++ Factorial Program
C++ Factorial Program Β C++ Factorial Program Β #include<iostream> #include<math.h> using namespace std; int fact(int n){ Β Β int number=1; Β Β for(int i=n;i>=1;iβ){ Β […]
Read moreC++ FIRST PROGRAM
C++ FIRST PROGRAM Β Β Β C++ FIRST PROGRAM #include<iostream.h> using namespace std; int main () { cout<<βHello World !β; return 0; } Β Β […]
Read moreC++ FIRST PROGRAM
C++ FIRST PROGRAM Β C++ FIRST PROGRAM Β Β #include<iostream> using namespace std; int main () { cout<<βhello worldβ; return; } Β Β Topics Covered […]
Read moreMultiple of Matrix in c
Multiple of Matrix in c Multiple of Matrix in c Β #include <stdio.h> // Function to multiply two matrices void multiplyMatrices(int firstMatrix[10][10], int secondMatrix[10][10], int […]
Read morePython First Program
Python First Program Python First Program Β Β Β print(βHello, World!β) Β Β Β Β Β Topics Covered : python programming learn python programming python […]
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 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 more
Recent Comments