Ad Code

Showing posts with the label C ProgrammingShow All
write a program in c++ to print the sum of two numbers using variables

write a program in c++ to print the sum of two numbers using variables #include<iostream.h> #include<conio.h> void main() { clrscr(); int a,b, sum; cout<<"Please enter any two numbers"<<<<e…

 My First C++ Program

My First C++ Program #include<iostream.h> void main() { cout<< "Welcome!"; cout<< "This is my first Program using C++"; } =========================================== Output: Welcome! This is…

Write a program to display even numbers from 30 to 10 in reverse order using C++

#include<iostream.h> #include<conio.h> void main() { clrscr(); int n; for(n=30;n>=10;n=n-2) { cout<<n<<endl; } getch(); }

Write a program to display N natural numbers and their sum using FOR loop in C++

#include <iostream> using namespace std; int main() {     int n,i,sum=0;     cout << "\n\n Display n terms of natural number and their sum:\n";     cout << "--------------------------------------…

Write a program to display the terms and sum of the following series:  1+4+7+10+13+16+ 19 +22 using c++

Write a program to display the terms and sum of the following series:  1+4+7+10+13+16+ 19 +22  #include <iostream> using namespace std; int main() { cout << "1 + 4 + 7 + 10 + 13 + 16 + 19 + 22 = " << 1…

Load More That is All