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