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: c++
Swapping of two numbers in C++
Swapping of two numbers in C++ Swapping of two numbers in C++ Swapping of two numbers : #include <iostream> using namespace std; int main() [β¦]
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 morePATTERN PRINTING -2 in C++
PATTERN PRINTING -2 in C++ PATTERN PRINTING -2 in C++ STAR TRIANGLE #include<iostream> using namespace std; int main() { int n; cout<<βenter n : β; [β¦]
Read morePattern Printing -1 in C++
Pattern Printing -1 in C++ Pattern Printing -1 in C++ NUMBER SQUARE #include<iostream> using namespace std; int main(){ int n; cout<<βEnter a number : β; [β¦]
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 moreDecimal To Binary in C
Decimal 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 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 moreSum and Average of an Array
Sum and Average of an Array Sum and Average of an Array Code : #include<stdio.h> int main(){ int n; int sum=0; [β¦]
Read more
Recent Comments