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 moreCategory: Uncategorized
Write a program in python to check whether a number is prime or not.
Here’s a Python code to check if a given number is prime or not: def is_prime(n):if n <= 1:return Falseelif n <= 3:return Trueelif n […]
Read moreSecond Largest Element in an Array
Second Largest Element in an Array Second Largest Element in an Array #include <iostream> using namespace std; int main() { int arr[] = {1, […]
Read moreKaisa Lga Mera Majak
Kaisa Lga Mera Majak Thanks for reading this blog. Hope you get satisfied with the blog and definitely this blog […]
Read moreGiveaway Giveaway π₯³π₯³
Giveawayπ₯³ Join this Giveaway…50 Lucky User will get a chance toΒ upto Rs.100. Click to Proceed
Read moreGetting started with Python
INTRODUCTION Python is a popular programming language. It was created by Guido van Rossum, and released in 1991.It is used for:web development (server-side),software development,mathematics,system script […]
Read moreDdu entrance exam
What is the Entrance Exam for DDU Gorakhpur? The entrance exam for DDU Gorakhpur is the DDU entrance exam. The Deen Dayal Upadhyaya Entrance Exam […]
Read moreAMAZON PROJECT HTML & CSS
AMAZON PROJECT HTML & CSS AMAZON PROJECT HTML & CSS HTML CODE <!DOCTYPE html> <html lang=”en”> <head> Β Β <meta charset=”UTF-8″> Β […]
Read moreFind factorial of a number in C++
Find factorial of a number in C++ Find factorial of a number in C++ #include <iostream> using namespace std; int main() { int n; […]
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 more
Recent Comments