Write a Program to print the sum of digits of a given number.
Write a Program to print the sum of digits of a given number. #include <stdio.h> #include <conio.h> int main () { int no […]
Read moreTechnology + Coding
Write a Program to print the sum of digits of a given number. #include <stdio.h> #include <conio.h> int main () { int no […]
Read morePython tutorials for beginners Python Operators In Python programming, Operators in general are used to perform operations on values and variables. These are standard […]
Read moreFind the Sum of all Elements in Given Array Find the Sum of all Elements in Given Array include <iostream> using namespace std; int […]
Read moreC++ Program to Add Two Given Numbers C++ Program to Add Two Given Numbers #include <iostream> using namespace std; int main() { int input1, […]
Read morePrint Floyd’s Triangle in C++ Print Floyd’s Triangle in C++ FLOYD’S TRIANGLE #include <iostream> using namespace std; int main() { int n , a […]
Read moreFind the largest number among three number in C++ Find the largest number among three number in C++ #include <iostream> using namespace std; int […]
Read moreFind largest element of an array in C++ Find largest element of an array in C++ #include <iostream> using namespace std; int main() { […]
Read moreTic-Tac-Toe HTML, CSS & JAVASCRIPT PROJECT Tic-Tac-Toe HTML, CSS & JAVASCRIPT PROJECT HTML CODE:- <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″ […]
Read more# Hourglass Pattern in C++ // C++ Code for pattern Printing #include <iostream>using namespace std; // Function to demonstrate printing pattern void pypart(int n) […]
Read moreHere’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 moreCALCULATOR PROJECT HTML, CSS & JAVASCRIPT CALCULATOR PROJECT HTML, CSS & JAVASCRIPT HTML CODE:- <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″ /> […]
Read more
Recent Comments