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 moreC++ 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 #include<iostream> #include<math.h> using namespace std; int fact(int n){ Β Β int number=1; Β Β for(int i=n;i>=1;i–){ Β […]
Read moreFunctions of Operating System Functions of Operating System Β Process Management Memory Management Security File Management Device Management Backup and Recovery 1- PROCESS MANAGEMENT The operating […]
Read moreDecimal To Binary in C Decimal To Binary in C Question: Write a C program to convert a Decimal number to Binary number. […]
Read moreC++ 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 #include<iostream> using namespace std; int main () { cout<<“hello world”; return; } Topics Covered […]
Read moreOperating System Operating System Operating system is a system software. It basically manages all the resources of the computer . An operating system acts as […]
Read moreSum and Average of an Array Sum and Average of an Array Code : #include<stdio.h> int main(){ Β Β int n; Β Β int sum=0; […]
Read more// If you liked it don’t forget to give // a (+1) like. // Thank you all! // By @ Akash.. #include <iostream> #define N […]
Read more
Recent Comments